Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 'on';
assert(isequal(onoff(x),y_correct))
|
2 | Pass |
%%
x = isempty('on');
y_correct = 'off';
assert(isequal(onoff(x),y_correct))
|
3 | Pass |
%%
x = [];
y_correct = 'off';
assert(isequal(onoff(x),y_correct))
|
5703 Solvers
Increment a number, given its digits
562 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
420 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!