Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = -pi/2;
y_correct = sin(x);
assert(abs(my_func(x)-y_correct)<0.0001)
|
2 | Pass |
x = rand(1)*2*pi;
y_correct = sin(x);
assert(abs(my_func(x)-y_correct)<0.0001)
|
3 | Pass |
assessFunctionAbsence({'cos', 'sin'}, 'FileName', 'my_func.m');
|
Project Euler: Problem 5, Smallest multiple
397 Solvers
Find the maximum number of decimal places in a set of numbers
734 Solvers
257 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
266 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!