This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 1/pi;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
%%
x = pi;
y_correct = pi;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
%%
x = pi/2;
y_correct = pi/4;
assert(isequal(your_fcn_name(x),y_correct))
|
Deleting an element in a matrix
242 Solvers
189 Solvers
Flip the vector from right to left
755 Solvers
237 Solvers
find the surface area of a cube
215 Solvers