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
1
|
17209 Solvers
9818 Solvers
516 Solvers
359 Solvers
Create sequnce 1 4 9 16 25.........
190 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!