Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Matlab Importdata Precision

I'm trying to use importdata for several data files containing data of a precision up to 11 digits after the decimal, is Matlab seems to think I am only interested in the first 5 digits when using importdata, is there an alternative method I could use to load my data, or a method to define the precision to which I want my data loaded?

like image 605
KRS-fun Avatar asked Feb 21 '26 22:02

KRS-fun


1 Answers

First try:

format long g

Also, can you paste some of the data you are trying to load?

like image 109
macduff Avatar answered Feb 24 '26 18:02

macduff