How to round the decimal?
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    laith Farhan
 el 27 de Jun. de 2018
  
    
    
    
    
    Comentada: Star Strider
      
      
 el 27 de Jun. de 2018
            Dear All;
I have a number array x = [0.00135678 0.00076243;0.0000045789 0.01234567];
Then i just want to round x to become as: results:[0.0013 0.00076; 0.0000045 0.012];
 What to do?
Thanks in advance.....
0 comentarios
Respuesta aceptada
  Star Strider
      
      
 el 27 de Jun. de 2018
        Try this:
x = [0.00135678 0.00076243;0.0000045789 0.01234567];
L10 = log10(x);                                                 % Base 10 Logarithm
mant = fix(10.^rem(L10,1)*100);                                 % Calculate Mantissa & Remove Extra Digits
expt = floor(L10)-1;                                            % Determine Exponent
Result = mant .* 10.^expt
Result =
     0.001300000000000   0.000760000000000
     0.000004500000000   0.012000000000000
2 comentarios
Más respuestas (1)
  Steven Beumer
      
 el 27 de Jun. de 2018
        
      Editada: Stephen23
      
      
 el 27 de Jun. de 2018
  
      You might want to check out this function for that:
0 comentarios
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!


