Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=4; b=3;
y_correct = pi*pi*7/4;
assert(isequal(you_fcn_name(a, b),y_correct))
y =
17.2718
|
2 | Pass |
a=5; b=3;
y_correct = pi*pi*8;
assert(isequal(you_fcn_name(a, b),y_correct))
y =
78.9568
|
3 | Pass |
a=2; b=1;
y_correct = pi*pi*3/4;
assert(isequal(you_fcn_name(a, b),y_correct))
y =
7.4022
|
Find all elements less than 0 or greater than 10 and replace them with NaN
11614 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
524 Solvers
Matrix with different incremental runs
91 Solvers
Solving Quadratic Equations (Version 1)
361 Solvers
201 Solvers