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
|
1163 Solvers
Convert from Base 10 to base 5
203 Solvers
505 Solvers
Matlab Basics II - Log and natural log
136 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!