Square the following matrix using matlab
%
A = 1 2 3 4
5 6 7 8
So new matrix should display as
A = 1 4 9 16
25 36 49 64
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers708
Suggested Problems
-
Project Euler: Problem 10, Sum of Primes
2122 Solvers
-
762 Solvers
-
Find the area of the four walls
293 Solvers
-
Matlab Basics - Convert a row vector to a column vector
683 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2210 Solvers
More from this Author8
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Note: What is required here is squaring the elements in the matrix, which is not the same as squaring the matrix.