how can I find the maximum value of a parameter running within a loop

1 visualización (últimos 30 días)
Dear All,
I want to extract the maximum of a parameter in aloop through its various ieterations, something like below:
for i=1:100
A=f(i)
B=f(A,i)
C=f(B,i)
end
How can I find the maximum of C and also display corresponding A and B?
I would appreciate your response in advance.

Respuesta aceptada

KSSV
KSSV el 16 de Oct. de 2021
maxC = 0 ;
for i=1:100
A=f(i) ;
B=f(A,i) ;
C=f(B,i) ;
if C > maxC
maxC = C ;
Amax = A ;
Bmax = B ;
end
end
[maxC Amax Bmax]

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by