SamplesPerFrame / "length of segments can't be longer than input signal"
2 次查看(过去 30 天)
显示 更早的评论
I'm a bit stuck. I'm importing 240000000 data points into Matlab. They are complex pairs so I'm expecting to have 120000000 in total. When I run the following code, I get an error that the length of the segments can't be longer than the input signal. I expect it's obvious - what am I failing to understand? 9000 samples per frame is the biggest number I've tried that doesn't end up with zero padding at the end of the list.
reader = dsp.BinaryFileReader('filename.dat','SamplesPerFrame',9000,...
'NumChannels',1,'IsDataComplex',true);
s = struct([]);
reader.HeaderStructure = s;
data = reader();
display(data);
fs = 60e6;[S, F, T, P] = spectrogram (data, fs);
0 个评论
回答(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!