Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 2;
y=4;
z=3;
y_correct = 19.3480;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
ans =
[]
|
2 | Pass |
x = 2;
y=4;
z=0;
y_correct = 11.6021;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
ans =
[]
|
3 | Pass |
x = 4;
y=4;
z=0;
y_correct = 0.2041;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
ans =
[]
|
4 | Pass |
x = 4;
y=2;
z=0;
y_correct = 12.2041;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
ans =
[]
|
5 | Pass |
x = 1;
y=1;
z=1;
y_correct = 1.2361;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
ans =
[]
|
How to find the position of an element in a vector without using the find function
2323 Solvers
179 Solvers
Switch matrix to a column vector
189 Solvers
find the maximum element of the matrix
254 Solvers
Matlab Basics - Pick out parts of a vector
149 Solvers