フィルターのクリア

How can I read an excel file without approximating values to 4 decimal places?

3 ビュー (過去 30 日間)
MUKHTAR MISBAHU UMAR
MUKHTAR MISBAHU UMAR 2018 年 11 月 9 日
編集済み: Stephen23 2018 年 11 月 9 日
I read an excel file as part of my code but the particular values I am interested are approximated to 4 decimal places instead of the higher places I would want to have. These are latitude and longitude values and every digit is important. Is there a way I can read all decimal places with any approximation?
This is in R2018b.

採用された回答

Stephen23
Stephen23 2018 年 11 月 9 日
編集済み: Stephen23 2018 年 11 月 9 日
MATLAB does not "approximating values to 4 decimal places" when reading file data, that is simply how the values are being displayed. Do not confuse how values are displayed with what values are actually stored in MATLAB memory: these are two quite different things! You can change how values are displayed by using the format function, e.g. run this in the command window:
format longg
then display your data again. Try other format options and pick one that you like.
If you are using the Variable Viewer then change its format options.
  2 件のコメント
MUKHTAR MISBAHU UMAR
MUKHTAR MISBAHU UMAR 2018 年 11 月 9 日
Thank you. does that go before reading the file?
MUKHTAR MISBAHU UMAR
MUKHTAR MISBAHU UMAR 2018 年 11 月 9 日
Thank you. I completely forgot the values are displayed based on the format. Much appreciated.

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

その他の回答 (0 件)

カテゴリ

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