I'm trying to read a number in scientific e notation from like 5 from a textfile of format
VEV: 1.500000e+15
Lambda: 9.364217e-107
mu: 1.451533e-38
M: 2.435300e+17
Length Scale Xi: 2.435724e+37
Force Scale Beta: 1.597305e+07
Force Scale Gamma: 2.570301e-45
Energy Density Scale Sigma: 1.185159e-46
specifically from line 7. I have the following code
Paramater_ID = fopen(Parameter_File_Path, 'rt');
C = textscan(Paramater_ID,'%f',1,'headerlines',6);
However this just returns a cell array of '[]'
with no errors.
Any help will be much appreciated!