Info
此问题已关闭。 请重新打开它进行编辑或回答。
The results of a code place them at the entry of the same code.
1 次查看(过去 30 天)
显示 更早的评论
Hi. Goodnight. I have a matrix 20 X 5 at the entrance of my code, the matrix "Prog" Later this matrix enters to the code, it is processed and at the end I have a matrix result of 20 X 5, the matrix "M" What I want to do and I have not been able to do, is to take the values of the matrix "M" and enter them into the "Prog" matrix. I will do this at least 1000 times. At the end of the code I put this: Prog = M but it does not work.
I hope you give me guidance, advice, suggestions, solutions, ... etc, etc, etc,
Greetings and thanks.
6 个评论
Walter Roberson
2018-6-21
Or just an iterative function:
M = randn(20,5);
for K = 1 : 1000
M = Prog(M);
end
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!