Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
[q,r] = swapInputs(5,10);
assert(isequal(q,10));
assert(isequal(r,5));
|
2 | Fail |
[q,r] = swapInputs(magic(3), 'hello, world');
assert(isequal(q,'hello, world'));
assert(isequal(r,magic(3)));
|
3 | Fail |
[q,r] = swapInputs({}, NaN);
assert(isnan(q));
assert(iscell(r) && isempty(r));
|
2401 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Switch matrix to a column vector
260 Solvers
556 Solvers
Calculate Amount of Cake Frosting
7548 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!