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

 採用された回答

James Tursa
James Tursa 2016 年 11 月 8 日
編集済み: James Tursa 2016 年 11 月 8 日

0 投票

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).

その他の回答 (1 件)

Marisol Riddell
Marisol Riddell 2016 年 11 月 8 日

0 投票

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

カテゴリ

ヘルプ センター および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by