Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3];
y_correct = 3;
assert(isequal(VectorLength(x),y_correct))
|
2 | Pass |
x = 1:10;
y_correct = 10;
assert(isequal(VectorLength(x),y_correct))
|
3 | Pass |
x = rand(1,928);
y_correct = 928;
assert(isequal(VectorLength(x),y_correct))
|
54364 Solvers
Convert a vector into a number
503 Solvers
276 Solvers
250 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!