フィルターのクリア

Losing precision when writing to Excel using xlswrite

4 ビュー (過去 30 日間)
itzhak mal
itzhak mal 2019 年 1 月 31 日
コメント済み: Ollie A 2019 年 1 月 31 日
Hi all, I have a matrix on MATLAB with a very percise values, such as: 2 .268073544251674e+03 but when converting to excel it only shows: 2268.1
I used the following command:
xlswrite('MatrixEvoUNSuc',EvoUnsuc)
Is there anyway I could make sure I don't lose that percision?
Thank you!!

回答 (1 件)

Ollie A
Ollie A 2019 年 1 月 31 日
It could be to do with the format of the excel cells. In excel you can increase the number of decimal places displayed.
Otherwise, I tried:
T = table(EvoUnsuc);
writetable(T,'MatrixEvoUNSuc.xls');
which seems to display the number to a higher precision.
  8 件のコメント
madhan ravi
madhan ravi 2019 年 1 月 31 日
instead of writing it into one single file why not write in 3 separate files?
Ollie A
Ollie A 2019 年 1 月 31 日
I would try writing the data to a .dat or .txt file instead of .xls.
Reading the data back will be just as easy, and I'm sure the different file format will store all of your data.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by