How to generate a .dat from i q data?
55 views (last 30 days)
Show older comments
I'm trying to export a waveform from matlab into aaronia rtsa suite. I have the i and q available to me for the waveform in matlab, i tried to make a .dat file and import into aaronia and it gives an error for the file in arronia (file source in critical state). How exactly can i get the waveform into aaronia? Is .dat the easiest file format to get it into? Is it possible to convert to a .RTSA file in matlab? Any help will be appreciated!
0 Comments
Answers (1)
Walter Roberson
on 31 Oct 2024 at 22:19
Probably it goes something like this:
filename = 'OutputFileNameGoesHere.dat';
[fid, msg] = fopen(filename, 'w');
if fid < 0
error('failed to open file "%s" because "%s"', filename, msg);
end
IQDATA = [reshape(IDATA, 1, []); reshape(QDATA, 1, [])];
fwrite(fid, IQDATA, '*single');
fclose(fid)
... but perhaps it uses a different file format, or represents the IQ data as int16, or has headers...
0 Comments
See Also
Categories
Find more on Data Import and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!