Precision in writetable()

194 visualizaciones (últimos 30 días)
madhan ravi
madhan ravi el 26 de Oct. de 2020
Editada: Johannes Kalliauer el 20 de Jul. de 2022
Is there a way to use writetable() to export using only 2 decimals? To be able to directly export it to an excel file.

Respuesta aceptada

dpb
dpb el 26 de Oct. de 2020
Sadly, no. A OutputFormat formatting string or NumericPrecision option is not available.
I presume since a table can contain any data type including cells too many possibilities are opened up that TMW hasn't wanted to venture down that road.
Does seem like worthy of some design consideration for the normal cases, though, granted...
For text files, the numeric format is long g.
  7 comentarios
Tao Wang
Tao Wang el 10 de Mzo. de 2022
For me , Willingo's answer is still not working.
I tried and it did show numbers with 2 decimals in commond . but if I writetable() to excel, the numbers format is still long.
Also , I tried num2str first ,
num2str(1.345,'%.2')
and u will not only get the data with 2 decimals ,but also a green flag on the top left of the box.
dpb
dpb el 10 de Mzo. de 2022
Because having rounded the numbers, they still are doubles and will have machine-precision rounding that Excel will try to preserve.
All you can do is format them inside Excel; same way as MATLAB, Excel keeps everything as a double internally; it only changes how they're displayed.
The second route writes the numeric value as text in the cell which is the source of the warning highlight.
There are several user-contributed utilities to allow one to set Excel table properties on the FEX. I believe it was @Image Analyst who wrote and posted a pretty nice starter set of Excel_utils that you may search for here on Answers -- I recall making a couple extensions and adding/posting another feature or two. That's been with the year...just at the moment I've got things in a state it isn't convenient to try to go find, but will try to get back...

Iniciar sesión para comentar.

Más respuestas (1)

Johannes Kalliauer
Johannes Kalliauer el 20 de Jul. de 2022
Editada: Johannes Kalliauer el 20 de Jul. de 2022
dlmwrite('yourfile.txt',t{:,:},'\t','precision','%10.2f')
  1 comentario
dpb
dpb el 20 de Jul. de 2022
Doesn't get OP directly to Excel as per request, though...but correct that it does allow the formatting string.

Iniciar sesión para comentar.

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by