Why does str2num truncate my number so early?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Andrew Reibold
le 23 Juin 2014
Commenté : Jairo Andrés Gutiérrez Suárez
le 7 Fév 2022
When I try to convert from string to number, I lose precision?
whos test_str
Name Size Bytes Class Attributes
test_str 1x9 18 char
K>> test_str
test_str =
0.067354
K>> str2num(test_str)
ans =
0.0674
0 commentaires
Réponse acceptée
Plus de réponses (1)
Sara
le 23 Juin 2014
Use
sprintf
so you can control the precision you want.
3 commentaires
Jairo Andrés Gutiérrez Suárez
le 7 Fév 2022
Yep but that method is not efficient. There should be a way to use the exact number of decimals. What if I am using srt2num to find a folder with the same number I looked for?
Voir également
Catégories
En savoir plus sur Data Type Conversion 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!