How can I convert a .mat file into a .txt file with all the headers? I do not know how many fields are present.
How do I export this data? I have MATLAB.
I tried in MATLAB:
load('test_data.mat');
save('test_data.txt', '-ascii');
It did not work.