This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 35;
y_correct = [1 2 3 0];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 31;
y_correct = [1 1 3 1];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 21;
y_correct = [1 0 1];
assert(isequal(your_fcn_name(x),y_correct))
|
The Hitchhiker's Guide to MATLAB
2874 Solvers
Calculate the area of a triangle between three points
874 Solvers
Set some matrix elements to zero
290 Solvers
Create matrix of replicated elements
321 Solvers
498 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!