Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
[q,r] = swapInputs(5,10);
assert(isequal(q,10));
assert(isequal(r,5));
r =
5
q =
10
|
2 | Pass |
[q,r] = swapInputs(magic(3), 'hello, world');
assert(isequal(q,'hello, world'));
assert(isequal(r,magic(3)));
r =
8 1 6
3 5 7
4 9 2
q =
'hello, world'
|
3 | Pass |
[q,r] = swapInputs({}, NaN);
assert(isnan(q));
assert(iscell(r) && isempty(r));
r =
0×0 empty cell array
q =
NaN
|
1091 Solvers
829 Solvers
531 Solvers
Replace multiples of 5 with NaN
358 Solvers
Find the dimensions of a matrix
373 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!