how can I add a value to a particular cell in an array.
    3 次查看(过去 30 天)
  
       显示 更早的评论
    
if [3,2,4,5;3,2,6,4;2,5,8,5] is array then we add we add 2 to the second row to become [2,3,2,5;3, 4,6,4;2,5,8,5]
采纳的回答
  KL
      
 2017-11-6
        if A is your array,
>> A = [3,2,4,5;3,2,6,4;2,5,8,5]
A =
     3   2   4   5
     3   2   6   4
     2   5   8   5
and if you want to add 2 to 2nd row, 2nd column,
 A(2,2) = A(2,2)+2;
and then A becomes,
 A =
   3   2   4   5
   3   4   6   4
   2   5   8   5
is this what you mean?
0 个评论
更多回答(0 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


