Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [10 2];
y_correct = 2/10;
assert(isequal(your_fcn_name(x),y_correct))
y =
0.2000
|
2 | Pass |
x = [20 1];
y_correct = 1/20;
assert(isequal(your_fcn_name(x),y_correct))
y =
0.0500
|
3 | Pass |
x = [100 20];
y_correct = 1/5;
assert(isequal(your_fcn_name(x),y_correct))
y =
0.2000
|
7685 Solvers
333 Solvers
Calculate the area of a triangle between three points
281 Solvers
Magic is simple (for beginners)
1117 Solvers
Do Fast Fourier Transformation
178 Solvers