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 );
x =
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
x =
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
|
2 | Pass |
%% test 2
x = 10;
y = mydct(mydct(x));
y_corr = 10;
assert( norm( y_corr(:) - y(:)) < 1e-10 );
x =
10
x =
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 );
x =
1 0
|
163 Solvers
253 Solvers
579 Solvers
Given a matrix, return the last eigen value
175 Solvers
Multiples of a Number in a Given Range
214 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!