Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1:10];
y_correct = 0;
assert(isequal(column_vector(x),y_correct))
ans =
logical
0
|
2 | Pass |
x = [1:10]';
y_correct = 1;
assert(isequal(column_vector(x),y_correct))
ans =
logical
1
|
3 | Pass |
x = 1;
y_correct = 1;
assert(isequal(column_vector(x),y_correct))
ans =
logical
1
|
find the maximum element of the matrix
348 Solvers
07 - Common functions and indexing 4
319 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Matlab Basics II - Count rows in a matrix
255 Solvers
1172 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!