Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 -2 1];
y_correct = [1;1];
assert(isequal(solvepol(x),y_correct))
ans =
1
1
|
2 | Pass |
x = [1 -3 2];
y_correct = [2;1];
assert(isequal(solvepol(x),y_correct))
ans =
2
1
|
747 Solvers
479 Solvers
Fahrenheit to Celsius converter
262 Solvers
Find Out sum of principal diagonal element of given matrix
152 Solvers
Compute LOG(1+X) in natural log
169 Solvers