how to write 12 digit after comma

3 次查看(过去 30 天)
i read in vtk file as input file
D= [ ' 0.99999884292 0.99999951733 1 0.99999737897 0.99998922997 0.99998569147 0.99999033688 0.99999377443 1 1 0.99999976986 0.99999785577]
E=sscanf(D,'%f');
E =[1 1 1 1 1 1 1 1 1 1 1 1]; %result
but i do not want that, what i needed is [0.99999884292 0999xx .... ...... ..]
i tried
E=sscanf(D.'%1.12f') did not worked

采纳的回答

madhan ravi
madhan ravi 2019-7-13
format longg
E=sscanf(D,'%f')
  3 个评论
madhan ravi
madhan ravi 2019-7-13
I get:
E =
0.99999884292
0.99999951733
1
0.99999737897
0.99998922997
0.99998569147
0.99999033688
0.99999377443
1
1
0.99999976986
0.99999785577
vaya putra
vaya putra 2019-7-13
okay thank,
since i open in excel it right. thank you for your help

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Low-Level File I/O 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by