Matlab Importdata Precision

I am trying to use importdata for multiple data files containing data with 11 digits after the decimal point, it seems like Matlab thinks 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 method for determining the precision with which I want my data to be loaded?

+3


source to share


1 answer


First try:

format long g

      



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

+2


source







All Articles