Finding specific iteration in a triple for loop

1 vue (au cours des 30 derniers jours)
Jacky Foo
Jacky Foo le 29 Mai 2020
Commenté : Jacky Foo le 31 Mai 2020
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.

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 29 Mai 2020
Modifié(e) : KALYAN ACHARJYA le 29 Mai 2020
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 commentaire
Jacky Foo
Jacky Foo le 31 Mai 2020
Yeah, there was an issue in the for loop. I got it fixed. Thanks for your help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by