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));
|
36158 Solvers
How to find the position of an element in a vector without using the find function
2318 Solvers
given 3 sides, find area of this triangle
600 Solvers
Rotate and display numbered tile
221 Solvers
07 - Common functions and indexing 4
258 Solvers