How to keep scientific notation in string.
47 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have some values in an array in matlab
epsilon=[1e-01,9e-02,8e-02]
I want to turn these values into a string so I can use them on plots etc.
stringepsilon=string(epsilon)
but the output is not in scientific format :
stringeps="0.1" "0.89" "0.08"
how do I make it appear in scientific format.
0 commentaires
Réponses (2)
Awais Saeed
le 14 Déc 2021
Modifié(e) : Awais Saeed
le 14 Déc 2021
epsilon=[1e-01,9e-02,8e-02];
% try num2str()
str1 = string(num2str(epsilon,'%.e '))
% or try sprintf()
str2 = string(sprintf('%.e ',epsilon))
whos
Voir également
Catégories
En savoir plus sur Whos 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!