Is there a built-in function that can read scientific notation from a tab delimited text file in MATLAB?
A line of data looks like:
-1.52E-01 -1.32E-01 7.20E-02 -6.78E-04 1.97E-04 -1.89E-03 0.00E+00
I’ve tried tdfread(filename, delimiter) without success.
The command you are looking for is
dlmread.Here is the help entry from GNU Octave which should behave similarly :