Multiplying two columns in a matrix

37 次查看(过去 30 天)
Hi
I have loaded a text file into a matrix using dlmread function. this has 17 columns.. and now i want to add another column that is the multyplication of the 17th column and the 15th column. how do I do so?
thank you!!

采纳的回答

Walter Roberson
Walter Roberson 2019-1-30
YourArray(:,end+1) = YourData(:,15) .* YourData(:,17);
  2 个评论
itzhak mal
itzhak mal 2019-1-30
When I used dlm read it went into a matrix you named here "YourArray" right? So what's the difference between the "YourData" and the matrix? How do I solve this?
Thank you so much!!
Walter Roberson
Walter Roberson 2019-1-30
TheNameOfYourArrayGoesRightHere(:,end+1) = TheNameOfYourArrayGoesRightHere(:,15) .* TheNameOfYourArrayGoesRightHere(:,17);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by