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
|
1594 Solvers
144 Solvers
Check if number exists in vector
2311 Solvers
263 Solvers
242 Solvers