In my code some variables are getting negative values, I want to make minimum as zero, therefore when they get negative values I want them to assign them zero value.HOW to do it?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
KAPIL MAMTANI
el 9 de Mayo de 2016
Comentada: KAPIL MAMTANI
el 10 de Mayo de 2016
In my code some variables are getting negative values, I want to make minimum as zero, therefore when they get negative values I want them to assign them zero value.The variables are N and P. I want whenever N or P goes negative than if N or P <=0 than N or P = 0 and Gp = 0. I am unable to do so in my for loop. Need Assistance!
0 comentarios
Respuesta aceptada
Walter Roberson
el 9 de Mayo de 2016
N = max(0, N);
4 comentarios
Walter Roberson
el 10 de Mayo de 2016
You wrote,
"I want to make minimum as zero, therefore when they get negative values I want them to assign them zero value"
Add the line N = max(0,N) at the point at which you want to make the negative numbers into 0.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!