Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4];
y_correct = [4 3 2 1];
assert(isequal(rot(x),y_correct))
y =
4 3 2 1
|
2 | Pass |
x = [5 6 7 8];
y_correct = [8 7 6 5];
assert(isequal(rot(x),y_correct))
y =
8 7 6 5
|
1263 Solvers
Getting the indices from a vector
3207 Solvers
Calculate the area of a triangle between three points
871 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
177 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!