フィルターのクリア

To get 100 vectors using the previous vector

2 ビュー (過去 30 日間)
GOPI KRISHNA RAVIKUMAR
GOPI KRISHNA RAVIKUMAR 2020 年 5 月 7 日
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
GOPI KRISHNA RAVIKUMAR 2020 年 5 月 7 日
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 Center および File ExchangeVariables についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by