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'))
|
Find the two most distant points
1628 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
184 Solvers
299 Solvers
321 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!