Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% test 1
x = eye(4);
y = mydct(mydct(x));
y_corr = eye(4);
assert( norm( y_corr(:) - y(:)) < 1e-10 );
a =
0.5000 0.5000 0.5000 0.5000
0.6533 0.2706 -0.2706 -0.6533
0.5000 -0.5000 -0.5000 0.5000
0.2706 -0.6533 0.6533 -0.2706
a =
1.0000 0 -0.0000 -0.0000
0.0000 1.0000 0.0000 0.0000
-0.0000 0.0000 1.0000 0.0000
-0.0000 0.0000 0.0000 1.0000
|
2 | Pass |
%% test 2
x = 10;
y = mydct(mydct(x));
y_corr = 10;
assert( norm( y_corr(:) - y(:)) < 1e-10 );
a =
10
a =
10
|
3 | Pass |
%% test 3
x = [1 0];
y = mydct(x);
y_corr = sqrt(2)/2*[1;1];
assert( norm( y_corr(:) - y(:)) < 1e-10 );
a =
0.7071
0.7071
|
Back to basics 6 - Column Vector
908 Solvers
Sort numbers by outside digits
127 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
62 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!