Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3];
y_correct = 3.7417;
assert(abs(vector_mag(x)-y_correct)<0.0001)
|
2 | Pass |
x = [-1 5 -6];
y_correct = 7.8740;
assert(abs(vector_mag(x)-y_correct)<0.0001)
|
3 | Pass |
x = [3 4 5];
y_correct = 7.0711;
assert(abs(vector_mag(x)-y_correct)<0.0001)
|
4 | Pass |
x = [5 5 -5];
y_correct = 8.6603;
assert(abs(vector_mag(x)-y_correct)<0.0001)
|
5 | Pass |
isempty(regexp(evalc('type vector_mag'),'sum'))
ans =
logical
0
|
2474 Solvers
613 Solvers
205 Solvers
find the roots of a quadratic equation
125 Solvers
Sum the squares of numbers from 1 to n
116 Solvers