Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 2;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 11;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = 22;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
|
5 | Pass |
x = 13;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
|
6 | Pass |
x = [56 117 8 24 44 33 15];
y_correct = [true false true true true false false];
assert(isequal(your_fcn_name(x),y_correct))
|
7 | Pass |
x = [99 558 100; 101 6 4; 44 31 39];
y_correct = [false true true; false true true; true false false];
assert(isequal(your_fcn_name(x),y_correct))
|
8 | Pass |
filetext = fileread('your_fcn_name.m');
assert(isempty(strfind(filetext, 'for')),'for command is forbidden')
assert(isempty(strfind(filetext, 'repelem')),'repelem command is forbidden')
assert(isempty(strfind(filetext, 'discretize')),'discretize command is forbidden')
assert(isempty(strfind(filetext, 'while')),'while command is forbidden')
assert(isempty(strfind(filetext, 'if')),'if command is forbidden')
|
235 Solvers
Celsius to Fahrenheit converter
388 Solvers
387 Solvers
Matlab Basics - y as a function of x
339 Solvers
Matlab Basics II - Extract last 3 elements of a vector
164 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!