MATLAB: How to get numerical values of a text type cell

cellmatrixread txt

Hi,
I am trying to read the contents of a .txt file, which is the frequency response data I got from other simulation software. The following shows the format of the data, which has 'Frequency' and 'Real/Imaginary' part of the frequency response.
Capture.JPG
I tried using 'readtable()' to load the data into MATLAB, which works. However, the loaded data is in 'Cell' format, and I am not able to get the actual value of the data, please see following.
Capture.JPG
My question is (1) how can I get the actual values ? (2) Is there any better way to do the job than 'readtable()' ? Thanks for help!

Best Answer

T = readtable(FileName, 'Delimiter', ' ,');