Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 30;
y_correct = 0.5000;
assert(abs(your_fcn_name(x)-y_correct)<0.0001)
ans =
0.5000
|
2 | Pass |
%%
x = 60;
y_correct = 0.8660;
assert(abs(your_fcn_name(x)-y_correct)<0.0001)
ans =
0.8660
|
3 | Pass |
%%
x = 90;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
ans =
1
|
Find the two most distant points
1628 Solvers
Getting the row and column location from a matrix
236 Solvers
531 Solvers
289 Solvers
Back to Basics - Find no. of elements in a matrix?
216 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!