Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y=3;
assert(isequal(function_io(x,y),' "x" = 1 "y" = 3'))
|
2 | Pass |
%%
x = 100;
y= 356;
z = 400;
assert(isequal(function_io(x,y,z),' "x" = 100 "y" = 356 "z" = 400'))
|
3 | Pass |
%%
x = 0;
assert(isequal(function_io(x),' "x" = 0'))
|
4 | Pass |
%%
abc = 0;
pqr = 1;
xyz = 2;
assert(isequal(function_io(abc,pqr,xyz),' "abc" = 0 "pqr" = 1 "xyz" = 2'))
|
What is the next step in Conway's Life?
639 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
Create matrix of replicated elements
321 Solvers
405 Solvers
67 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!