Effacer les filtres
Effacer les filtres

Hi, i want to read values fron excle file my code, but when i use format short it reads 1.6 as 2.0 so no.

2 vues (au cours des 30 derniers jours)
I have used format Bank in that case it reads 1.6 as 1.6 but in that case my format for whole code becomes as "format Bank". I want that use format Bank only to read excel file and then after that format short.
please help

Réponses (1)

dpb
dpb le 21 Juil 2015
It has no bearing on computations nor internal representation nor the results of reading an Excel spreadsheet.
format Set output format.
format with no inputs sets the output format ...
format does not affect how MATLAB computations are done. Computations
on float variables, namely single or double, are done in appropriate
floating point precision, no matter how those variables are displayed.
...
format may be used to switch between different output display formats
...
If you want a particular output format, use sprintf or num2str with the formatting string you want, specifically.
  2 commentaires
vandana
vandana le 22 Juil 2015
Hi when I am taking input from keyboard code is running perfectly. but whenever taking input thro. excel it gives NAN
dpb
dpb le 22 Juil 2015
Modifié(e) : dpb le 22 Juil 2015
Show your work; can't say anything from that description alone. Also need to attach the input file.
PS. Pare the sample code down to just the minimum that illustrates the problem you seem to be having with the input so that other volunteers here don't have to wade thru a bunch of superfluous stuff; another benefit of doing so besides the thoughtfulness of others is that oftentimes one finds that in making this sample case one discovers the difficulty on one's own...

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by