Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
[q,r] = swapInputs(5,10);
assert(isequal(q,10));
assert(isequal(r,5));
varargout =
[10] [5]
|
2 | Pass |
%%
[q,r] = swapInputs(magic(3), 'hello, world');
assert(isequal(q,'hello, world'));
assert(isequal(r,magic(3)));
varargout =
'hello, world' [3x3 double]
|
3 | Pass |
%%
[q,r] = swapInputs({}, NaN);
assert(isnan(q));
assert(iscell(r) && isempty(r));
varargout =
[NaN] {}
|
Project Euler: Problem 1, Multiples of 3 and 5
1493 Solvers
First non-zero element in each column
593 Solvers
Fahrenheit to Celsius converter
358 Solvers
Convert a Cell Array into an Array
430 Solvers
2060 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!