Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to do a matrix from a loop for several values of a constant?
1 次查看(过去 30 天)
显示 更早的评论
So I am trying to have a 4x10 matrix called Y by using a for loop for each value of a. I just don't know how to do it. I know I could do this manually by defining y1 with a=.5, y2 with a=.9,...y4 with a=1.1 and running the loop for each one but I want the computer do it all. This for solving a more complex problem. Thanks in advance!
e=rand(1,10);
a=[.5,.9,1,1.1]
y=ones(1,10);
for i=2:10;
y(i)=a*y(i-1)+e(i-1); %I want a matrix of Y which contains this loop for each value
of a stated above.
end
0 个评论
回答(1 个)
Jose Marques
2017-9-9
Hello Germán Loredo! Try this:
clear all;
close all;
clc;
e=rand(1,10)
a=[.5,.9,1,1.1]
y=ones(4,10);
for i=1:10;
for k=1:4
y(k,i)=a(k)*y(i)+e(i); %I want a matrix of Y which contains this loop for each value
end
end
10 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!