This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4;0 0 0 0];
theta=0;
y_correct = [1 2 3 4;0 0 0 0] ;
assert(isequal(rotate2d(x,theta),y_correct))
|
2 | Pass |
x = [2 3 4 5;0 2 3 4];
theta=0;
y_correct = [2 3 4 5;0 2 3 4] ;
assert(isequal(rotate2d(x,theta),y_correct))
|
3 | Pass |
x = [5 3 4 5;9 2 3 4];
theta=0;
y_correct = [5 3 4 5;9 2 3 4] ;
assert(isequal(rotate2d(x,theta),y_correct))
|
647 Solvers
Arrange Vector in descending order
1810 Solvers
Who knows the last digit of pi?
488 Solvers
Create a vector whose elements depend on the previous element
290 Solvers
204 Solvers