Largest number in Matlab
    61 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
hi,
what is the largest un-signed integer in Matlab for my client?
thank you.
Réponses (3)
  Steven Lord
    
      
 le 24 Oct 2019
        When you say "largest integer" do you mean the largest value you can store in any of the integer data types or the largest integer value you can store in any of the built-in data types?
If you're using Symbolic Math Toolbox you can create numbers even larger than you can create in double precision.
two = sym(2)
q = two^10000
isAlways(q > realmax) % true
0 commentaires
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!