value of log(1000)
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hi all i want to find value of log(1000)in matlab, we know lo(1000) value is 3, but matlab calculate it 6.9078. tell me how to calculate this value
Thank You
0 commentaires
Réponse acceptée
Win co
le 9 Mai 2012
the value 6.9078 is ln(1000) . To compute log(1000), you can type : >> log10(1000)
ans =
3
or
>> log(1000)/log(10)
ans =
3.0000
0 commentaires
Plus de réponses (2)
Voir également
Catégories
En savoir plus sur Data Logging 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!