ベクトル計算時の進捗状況の表示方法

6 ビュー (過去 30 日間)
Shota Ino
Shota Ino 2023 年 10 月 18 日
コメント済み: Dyuman Joshi 2023 年 10 月 18 日
膨大な計算を実施しており、時間短縮を理由にループ処理による演算からベクトル演算に変更しております。
ベクトル演算に変更しても演算時間が長く、計算がどれくらい終わっているのか確認できるように進捗状況を表示したいです。ベクトル演算を用いたまま、計算の進捗状況を表示することは可能でしょうか?
  1 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 10 月 18 日
It is possible to display the progress for Vectorization, but the progress would not be same compared to a for loop.
For a given task, Vectorizing performs the operation for all elements at once (that's why it's faster), whereas a loop performs the operation for each element one at a time.
So, you will directly get the final value of the calculation as the progress

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB 入門 についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!