To get 100 vectors using the previous vector

2 次查看(过去 30 天)
I have following matrices, F(9x9) Q1(9x1) I want to get Q2,Q3,Q4... such that Q2 = FxQ1 Q3 = FxQ2 Q4 = FxQ3 . . . Q100 = FxQ99

采纳的回答

Tommy
Tommy 2020-5-7
Q = cell(100,1);
Q{1} = Q1;
for i = 2:numel(Q)
Q{i} = F*Q{i-1};
end
  1 个评论
GOPI KRISHNA RAVIKUMAR
Thank you so much. For 100 variables its sufficient. For more variables like 10000 or so, its taking so much time. Can i get any other function?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Exploration 的更多信息

标签

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by