Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1:10];
y_correct = 0;
assert(isequal(column_vector(x),y_correct))
row =
1
col =
10
ans =
0
|
2 | Pass |
%%
x = [1:10]';
y_correct = 1;
assert(isequal(column_vector(x),y_correct))
row =
10
col =
1
ans =
1
|
3 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(column_vector(x),y_correct))
row =
1
col =
1
ans =
1
|
299 Solvers
219 Solvers
413 Solvers
Check that number is whole number
1070 Solvers
Matlab Basics - Absolute Value
360 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!