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)
y =
3.7417
|
2 | Pass |
x = [-1 5 -6];
y_correct = 7.8740;
assert(abs(vector_mag(x)-y_correct)<0.0001)
y =
7.8740
|
3 | Pass |
x = [3 4 5];
y_correct = 7.0711;
assert(abs(vector_mag(x)-y_correct)<0.0001)
y =
7.0711
|
4 | Pass |
x = [5 5 -5];
y_correct = 8.6603;
assert(abs(vector_mag(x)-y_correct)<0.0001)
y =
8.6603
|
5 | Pass |
isempty(regexp(evalc('type vector_mag'),'sum'))
ans =
logical
0
|
Find the sum of all the numbers of the input vector
25645 Solvers
All your base are belong to us
425 Solvers
197 Solvers
Determine the length of a string of characters
121 Solvers
128 Solvers