Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = [];
assert(isequal(invHilb2(x),y_correct))
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(invHilb2(x),y_correct))
|
3 | Pass |
x = 2;
y_correct = [16 36
36 144];
assert(isequal(invHilb2(x),y_correct))
|
4 | Pass |
x = 3;
y_correct = [ 81 1296 900
1296 36864 32400
900 32400 32400];
assert(isequal(invHilb2(x),y_correct))
|
5 | Pass |
x = 4;
y_correct = [ 256 14400 57600 19600
14400 1440000 7290000 2822400
57600 7290000 41990400 17640000
19600 2822400 17640000 7840000];
assert(isequal(invHilb2(x),y_correct))
|
First non-zero element in each column
593 Solvers
Who knows the last digit of pi?
557 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
452 Solvers
Find Out sum of principal diagonal element of given matrix
194 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!