Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
[q,r] = swapInputs(5,10);
assert(isequal(q,10));
assert(isequal(r,5));
q =
10
r =
5
|
2 | Pass |
[q,r] = swapInputs(magic(3), 'hello, world');
assert(isequal(q,'hello, world'));
assert(isequal(r,magic(3)));
q =
hello, world
r =
8 1 6
3 5 7
4 9 2
|
3 | Pass |
[q,r] = swapInputs({}, NaN);
assert(isnan(q));
assert(iscell(r) && isempty(r));
q =
NaN
r =
{}
|
2401 Solvers
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
2183 Solvers
1882 Solvers
443 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!