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

 Respuesta aceptada

James Tursa
James Tursa el 8 de Nov. de 2016
Editada: James Tursa el 8 de Nov. de 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).

Más respuestas (1)

Marisol Riddell
Marisol Riddell el 8 de Nov. de 2016

0 votos

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!!!!!!!!

Categorías

Más información sobre Mathematics en Centro de ayuda y File Exchange.

Preguntada:

el 8 de Nov. de 2016

Respondida:

el 8 de Nov. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by