A(:,:,1)=[1 3]
A(:,:,2)=[2 2]
A(:,:,3)=[4 3]
Change rows to columns and columns to rows, similar to transpose. Result should be
A(:,:,1)=[1;3]
A(:,:,2)=[2;2]
A(:,:,3)=[4;3]
(hint: use permute)
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers55
Suggested Problems
-
Find out missing number from a vector of 9 elements
321 Solvers
-
Who is the smartest MATLAB programmer?
791 Solvers
-
07 - Common functions and indexing 3
427 Solvers
-
Deleting an element in a matrix
490 Solvers
-
Matlab Basics - Set unwanted parts of a vector to zero
261 Solvers
More from this Author27
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
You gave a hint as well as showed the solution in the test suites only.
The solution has been removed from the test suite.