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
|
Solve the set of simultaneous linear equations
273 Solvers
Is this triangle right-angled?
2396 Solvers
Finding an element in a vector
136 Solvers
Create a square matrix of zeros of even order
108 Solvers
find a specific element from an matrix
81 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!