Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to replace the values of a Matrix
2 次查看(过去 30 天)
显示 更早的评论
Good Morning. Waiting for your valuable help. How to replace the values obtained in D in the matrix A and so on and that this is done 5 times.
clc; clear; close all
A=[0 0.84 1.62 2.19 2.69 3.56 4.55 5.11 5.95 6.94;
0 0.71 1.61 2.19 2.87 3.83 4.79 5.62 6.56 7.06;
0 0.93 1.49 2.48 3.15 3.73 4.27 4.86 5.77 6.76];
B=[0 0.84 1.62 2.19 2.69 3.56 4.55 5.11 5.95 6.94;
0 0.71 1.61 2.19 2.87 3.83 4.79 5.62 6.56 7.06;
0 0.93 1.49 2.48 3.15 3.73 4.27 4.86 5.77 6.76];
C=A+B;
D=2.*C
Thank you
2 个评论
James Tursa
2018-2-28
Please provide the exact desired result for your example. I.e., spell out the values of the result so we can be sure we understand what you want.
回答(1 个)
Fangjun Jiang
2018-2-28
Is this what you want?
A=rand(3,10);
B=rand(3,10);
C=A+B;
D=2.*C;
for k=1:5
A=D;
C=A+B;
D=2.*C;
end
1 个评论
此问题已关闭。
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!