MATLAB: Hello .. how to read a text file which is a matrix of [1000×512] order of complex numbers. could anyone please help me over this

complexcsvfilereadreading file of complex datatext;

I have a file that is matrix of complex numbers with order 1000×512 . I used csvread, textscan to read file . But I am facing problem in reading a file .kindly help me

Best Answer

Hi Darapu,
This worked for me.
T = readtable('Extracted_Dry_Tar_Road_prediction_file.txt','Whitespace',' ()');
T.Variables
Hope this helps,
Jeremy