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
|
The Hitchhiker's Guide to MATLAB
2874 Solvers
Create matrix of replicated elements
321 Solvers
241 Solvers
Back to Basics - Find no. of elements in a matrix?
216 Solvers
236 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!