This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 1;
y = 7;
y_correct = [0 1];
assert(isequal(your_fcn_name(x,y),y_correct))
|
3 | Pass |
x = 2;
y = 17;
z = 20;
y_correct = [1 1 0];
assert(isequal(your_fcn_name(x,y,z),y_correct))
|
926 Solvers
Sum of diagonal of a square matrix
1327 Solvers
583 Solvers
Sum of odd numbers in a matrix
311 Solvers
Find out value of sine given by degree.
231 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!