How to sorten the result value depicted on text area
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Amron
 el 12 de Sept. de 2023
  
    
    
    
    
    Comentada: NAVNEET NAYAN
      
 el 13 de Sept. de 2023
            hello, please help me.
the result of my calculation which is presented on "text area" is too long. i wanna shorten it at least to have one digit decimal. how can i do that? thanks

0 comentarios
Respuesta aceptada
  NAVNEET NAYAN
      
 el 12 de Sept. de 2023
        
      Editada: NAVNEET NAYAN
      
 el 12 de Sept. de 2023
  
      you can use "round" function. 
See it's documentation (https://in.mathworks.com/help/releases/R2022b/matlab/ref/round.html?s_tid=doc_srchtitle). 
I think that might also help. 
Like 
Min_diameter=0.56616
Min_diameter=round(Min_diameter,N);
N in your case will be 1, as you are looking for one digit decimal place.
2 comentarios
Más respuestas (1)
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!


