フィルターのクリア

Run script using a group of values?

1 回表示 (過去 30 日間)
TOK
TOK 2021 年 8 月 30 日
コメント済み: TOK 2021 年 9 月 3 日
Hi,
I am trying to do a sort of brute-force optimisation method on my script. I have 3 parameters, and I want to use 3 values for each of those 3 parameters.
I want to script to run with all possible values, giving a total of 27 results.
What is the best way of doing this? Should I just use 3 nested "for" loops?
Thanks

採用された回答

Matt J
Matt J 2021 年 8 月 30 日
編集済み: Matt J 2021 年 8 月 30 日
You can generate a matrix with all combinations using ndgrid, e.g.,
[p1,p2,p3]=ndgrid(1:3,10:10:30,100:100:300 );
Combinations = [p1(:),p2(:),p3(:)]
Combinations = 27×3
1 10 100 2 10 100 3 10 100 1 20 100 2 20 100 3 20 100 1 30 100 2 30 100 3 30 100 1 10 200
Should I just use 3 nested "for" loops?
You could, or you could use a single loop over the rows of Combinations. Ideally, though, you would look for some vectorized way to process the entire Combinations matrix.
  3 件のコメント
Matt J
Matt J 2021 年 8 月 30 日
Yes, you could do that.
TOK
TOK 2021 年 9 月 3 日
Thanks for your help with this Matt! In the end I just used nested for loops in my case, as it gave me the flexibility to specify a different number of values for each of my 3 parameters.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by