Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
[q,r] = swapInputs(5,10);
assert(isequal(q,10));
assert(isequal(r,5));
|
2 | Pass |
%%
[q,r] = swapInputs(magic(3), 'hello, world');
assert(isequal(q,'hello, world'));
assert(isequal(r,magic(3)));
|
3 | Pass |
%%
[q,r] = swapInputs({}, NaN);
assert(isnan(q));
assert(iscell(r) && isempty(r));
|
6065 Solvers
Return elements unique to either input
550 Solvers
Convert a vector into a number
503 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
Simple equation: Annual salary
3779 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!