Improving an if else function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello Board,
Anyone on ideas on a more efficient solution than the if else function below?? This takes the bulk of the time for the code so I need to reduce it.
function result = vre(t,r,e.......)
if (t==4 && r>0)
result = 0;
elseif (e==4 && r==0)
result = 1;
.
.
.
end
end
Thanks
2 comentarios
Respuestas (1)
AKARSH KUMAR
el 24 de Jun. de 2020
I don't think this if else condition could further be reduced, try to check in your other part of code.
0 comentarios
Ver también
Categorías
Más información sobre Whos 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!