How to generate a .dat from i q data?
55 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Walter Roberson
2024 年 10 月 31 日 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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Import and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!