Add a constant to a selected diagonal elements after every iteration.
4 次查看(过去 30 天)
显示 更早的评论
Hi everyone, I have a 9x9 matrix to which i want to add a constant of say 100i starting from the 4th element of the diagonal to the 9th. I would like to get an output after every operation/iteration (i.e. after adding 100i on each diagonal) but the value of 100i should be removed when the next operation is performed. Can anyone suggest me a method to achieve this objective? Thank you in advance.
0 个评论
回答(1 个)
Devanshu Shah
2021-7-13
Hi Kinga!
% Let us call the matrix A
for i = 1:num_iterations
%Do some operations
A(4, 4)=A(4, 4)+ 100i;
A(5, 5)=A(5, 5)+ 100i;
A(6, 6)=A(6, 6)+ 100i;
A(7, 7)=A(7, 7)+ 100i;
A(8, 8)=A(8, 8)+ 100i;
A(9, 9)=A(9, 9)+ 100i;
% print the matrix
disp(A);
% reset the addition of 100i by subtracting it
A(4, 4)=A(4, 4)- 100i;
A(5, 5)=A(5, 5)- 100i;
A(6, 6)=A(6, 6)- 100i;
A(7, 7)=A(7, 7)- 100i;
A(8, 8)=A(8, 8)- 100i;
A(9, 9)=A(9, 9)- 100i;
end
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!