Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 'on';
assert(isequal(onoff(x),y_correct))
ans =
[]
|
2 | Pass |
%%
x = isempty('on');
y_correct = 'off';
assert(isequal(onoff(x),y_correct))
ans =
[]
|
3 | Pass |
%%
x = [];
y_correct = 'off';
assert(isequal(onoff(x),y_correct))
ans =
[]
|
12387 Solvers
Make one big string out of two smaller strings
1149 Solvers
Return unique values without sorting
588 Solvers
343 Solvers
251 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!