Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 15;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
ans =
logical
1
|
2 | Pass |
x = 5;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
ans =
logical
0
|
3 | Pass |
x = 155;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
ans =
logical
0
|
4 | Pass |
x = 133;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
ans =
logical
0
|
724 Solvers
07 - Common functions and indexing 3
317 Solvers
352 Solvers
Find the dimensions of a matrix
373 Solvers
Matlab Basics - Convert a row vector to a column vector
423 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!