Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 0;
y_correct = [];
assert(isequal(invHilb2(x),y_correct))
ans =
[]
|
2 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(invHilb2(x),y_correct))
ans =
1
|
3 | Pass |
%%
x = 2;
y_correct = [16 36
36 144];
assert(isequal(invHilb2(x),y_correct))
ans =
16 36
36 144
|
4 | Pass |
%%
x = 3;
y_correct = [ 81 1296 900
1296 36864 32400
900 32400 32400];
assert(isequal(invHilb2(x),y_correct))
ans =
81 1296 900
1296 36864 32400
900 32400 32400
|
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))
ans =
256 14400 57600 19600
14400 1440000 7290000 2822400
57600 7290000 41990400 17640000
19600 2822400 17640000 7840000
|
2197 Solvers
1309 Solvers
519 Solvers
546 Solvers
Are all the three given point in the same line?
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!