フィルターのクリア

Vectorizing issue in MATLAB

1 回表示 (過去 30 日間)
Hossein Malekahmadi
Hossein Malekahmadi 2021 年 1 月 21 日
編集済み: Bruno Luong 2021 年 1 月 21 日
Hi I have problem with vectorizing in MATLAB that im not even sure there is possible way to do it, i glad if you can check it as well.
a(1)=1000;
for i=1:20
a(i+1)=sqrt((a(i)+1));
end
Is there any way to vectorizing it or i should use "for" when i want use this type of functions?
i tried search for answer, i didnt find any, i hope some one can answer me thanks.

採用された回答

Bruno Luong
Bruno Luong 2021 年 1 月 21 日
It is in general not possible to vectorize sequential calculation like yours.
  2 件のコメント
Hossein Malekahmadi
Hossein Malekahmadi 2021 年 1 月 21 日
i wrote a code that there is lots of sequential fuction in it.
and when i show it to some one, he told me you use lots of "for" it increase your running time. btw thanks for your time sir.
Bruno Luong
Bruno Luong 2021 年 1 月 21 日
編集済み: Bruno Luong 2021 年 1 月 21 日
"he told me you use lots of "for" it increase your running time"
You are miss informed by this person.
It all depends what you do inside the for-loop. Yours look OK to me.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by