how do I square a column in a matrix?

Hello,
I have a 7x3 matrix and the last column needs to have each entry squared. How do I square the one column while keeping it in the same Matrix?
Thanks, Marisol btw.... I am BRAND new to Matlab

 Accepted Answer

James Tursa
James Tursa on 8 Nov 2016
Edited: James Tursa on 8 Nov 2016
X = your 7x3 matrix
X(:,3) = X(:,3).^2; % replace 3rd column with its square (element-wise)
Note the dot in front of the ^ operator. That dot indicates element-wise operation. There are also .* and ./ for element-wise multiplication and element-wise division operators. The ^ and * and / without the initial dot indicates matrix operations (instead of element-wise operations).

More Answers (1)

THANK YOU!!!!! Oh my God, Thank you.... I have spent an hour trying to figure this out.. Did I say thank you yet? THANK YOUUUUU!!!!!!!!

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!