finding minimum
Mostrar comentarios más antiguos
how to find minimum between two numbers or variables. like p= min {(k'-1), int(dmax/d)} where dmax ,d, k' are variable
1 comentario
Andrei Bobrov
el 9 de Oct. de 2011
p = min(k-1,fix(dmax/d))
Respuestas (1)
Image Analyst
el 9 de Oct. de 2011
Did you look up min() in the help? Did you try something like
p = min([kPrime-1, int32(dmax/d)])
Categorías
Más información sobre Whos en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!