How to Update matrix values

15 次查看(过去 30 天)
I have a matrix[2 2:2 2]I want to update these four values one by one ie[3 3:3 3],[4 4:4 4],[5 5:5 5] like thgis I want to update ,,,how can i achieve this with script?

采纳的回答

Sriram
Sriram 2013-1-2
b = {};
a=[1 2;3 4]
for i=1:1:100;
a=a+1;
b = [b a];
end

更多回答(1 个)

Walter Roberson
Walter Roberson 2013-1-2
  4 个评论
Walter Roberson
Walter Roberson 2013-1-2
If you want to see each updated value, you could remove the semi-colon from the addition
a(i) = a(i) + 1 %no semi-colon
Arun Badigannavar
ya i know this ,,but i want to save the value of a(i) from i =1 to i=100

请先登录,再进行评论。

类别

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

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by