MATLAB: Read a txt file with engineering format

engineering formatread datatxt file

Dear All i have a problem to read a data in a txt file with engineering format, i have try
filename = 'Source.txt';
[B,delimiterOut]=importdata(filename);
but i get a trouble values Thanks

Best Answer

What kind of trouble? try this
filename = 'Source.txt';
format long
[B,delimiterOut]=importdata(filename);
Related Question