exp-mantissa part alone
    4 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
x=4096; expx = large_exp(x) disp(expx);
how to get only the first part(mantissa part of the answer alone to find exponential and use it in program
0 commentaires
Réponse acceptée
  Walter Roberson
      
      
 le 11 Sep 2011
        x=4096; expx = large_exp(x); mantissa = expx(1);
6 commentaires
  Walter Roberson
      
      
 le 12 Sep 2011
				As the first executable line of your program, put
format long g
After that, you will not get those silly 1.0e+007 * displays, and you will be able to see why the mantissa showed up as 1.3375 instead of 0.000 .
Plus de réponses (1)
  the cyclist
      
      
 le 11 Sep 2011
        I am not sure what you mean by large_exp(). I assume it is a function you wrote, or maybe it is in a toolbox that I do not have. Regardless, I expect that you can get at what you need by using the floor() function.
Voir également
Catégories
				En savoir plus sur Logical dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


