Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [10 2];
y_correct = 2/10;
assert(isequal(your_fcn_name(x),y_correct))
ans =
0.2000
|
2 | Pass |
%%
x = [20 1];
y_correct = 1/20;
assert(isequal(your_fcn_name(x),y_correct))
ans =
0.0500
|
3 | Pass |
%%
x = [100 20];
y_correct = 1/5;
assert(isequal(your_fcn_name(x),y_correct))
ans =
0.2000
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35570 Solvers
4599 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
4333 Solvers
2316 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!