Finding specific iteration in a triple for loop

1 回表示 (過去 30 日間)
Jacky Foo
Jacky Foo 2020 年 5 月 29 日
コメント済み: Jacky Foo 2020 年 5 月 31 日
I am trying to find the corresponding values of alpha, beta and gamma where my P value is maximum. My code is able to get maximum value of P = 1.9956 but I have no idea how to get the corresponding values of alpha, beta and gamma.
I have attached the question and my current code.
Could anyone help me out. Much appreciated.

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2020 年 5 月 29 日
編集済み: KALYAN ACHARJYA 2020 年 5 月 29 日
You can't do that, as all having different lengths. For equaly vector sie you can get the undex position and find the corresponding vector elements from a,b and y. To compare the corresponding array elements, arrays sizes must be same.
>> length(a)
ans =
151
>> length(b)
ans =
126
>> length(y)
ans =
21
>> length(P)
ans =
399546
I suspect, there may be issue within loop. Look for the solution, how to generate the same length size P, so that you can find the respective array elements from a,b and y, those index values generate the max P.
  1 件のコメント
Jacky Foo
Jacky Foo 2020 年 5 月 31 日
Yeah, there was an issue in the for loop. I got it fixed. Thanks for your help!

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by