Finding specific iteration in a triple for loop

1 visualización (últimos 30 días)
Jacky Foo
Jacky Foo el 29 de Mayo de 2020
Comentada: Jacky Foo el 31 de Mayo de 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.

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 29 de Mayo de 2020
Editada: KALYAN ACHARJYA el 29 de Mayo de 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 comentario
Jacky Foo
Jacky Foo el 31 de Mayo de 2020
Yeah, there was an issue in the for loop. I got it fixed. Thanks for your help!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by