Effacer les filtres
Effacer les filtres

how to display number in decimal ?

64 vues (au cours des 30 derniers jours)
Reema Alhassan
Reema Alhassan le 13 Juil 2018
Hello everyone, I have tried :
format long
format short
value=double(value)
and the output still fraction number how can I convert it to decimal ?
  3 commentaires
Walter Roberson
Walter Roberson le 13 Juil 2018
int(value) is an error unless the value is symbolic.
Perhaps the user wants
format bank
for 2 decimal places. Or perhaps the user wants fix() or floor() . Or perhaps round() with a particular number of decimal places.
Stephen23
Stephen23 le 13 Juil 2018

Connectez-vous pour commenter.

Réponses (1)

Steven Lord
Steven Lord le 14 Juil 2018
Since it's likely the "fraction number" is stored as a symbolic object, try calling either the vpa function or the double function with your symbolic number as input.

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!

Translated by