Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
[q,r] = swapInputs(5,10);
assert(isequal(q,10));
assert(isequal(r,5));
r =
5
|
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
|
3 | Pass |
[q,r] = swapInputs({}, NaN);
assert(isnan(q));
assert(iscell(r) && isempty(r));
r =
0×0 empty cell array
|
Back to basics 8 - Matrix Diagonals
707 Solvers
500 Solvers
Determine Whether an array is empty
561 Solvers
Return the first and last character of a string
1659 Solvers
Matlab Basics - Create a row vector
205 Solvers