Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p=[-1 1]
x=[1 2;3 4]
y_correct=[ 0 -1; -2 -3]
assert(isequal(SolvePoly(p,x),y_correct))
p =
-1 1
x =
1 2
3 4
y_correct =
0 -1
-2 -3
|
2 | Pass |
p=[-2 0 1 -1 3 2]
x=[5 6 11; 2 13 7; 4 9 21]
y_correct=[-6133 -15352 -320857;
-52 -740517 -33297;
-1986 -117421 -8159317]
assert(isequal(SolvePoly(p,x),y_correct))
p =
-2 0 1 -1 3 2
x =
5 6 11
2 13 7
4 9 21
y_correct =
-6133 -15352 -320857
-52 -740517 -33297
-1986 -117421 -8159317
|
420 Solvers
2099 Solvers
Find out total non zero element of matrix
193 Solvers
259 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!