The test suite is not very rigorous...
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = pi;
[y,z] = cos_abs(x)
assert(isequal(y/z,-1))
y =
3.1416
z =
-3.1416
|
2 | Pass |
%%
x = pi/2;
[y,z] = cos_abs(x)
assert(isequal(y/z,-1))
y =
1.5708
z =
-1.5708
|
3 | Pass |
%%
x = pi/4;
[y,z] = cos_abs(x)
assert(isequal(y/z,-1))
y =
0.7854
z =
-0.7854
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
894 Solvers
Create a Multiplication table matrix...
281 Solvers
188 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!