Squeezing the data in MATLAB
3 次查看(过去 30 天)
显示 更早的评论
Hello, I have a set of data with column 1 as frequency, column 2 as quality factor and column 3 as temperature. I have 1200 values of frequency and quality factor and 1921 values of temperature. Is there any way to squeeze the temperature values down to 1200 values? All the data were acquired in the same period of time.
2 个评论
Walter Roberson
2015-8-19
It sounds as if you have multiple lines with the same frequency and quality factor but (potentially) different temperatures. How would you like the data to be reduced? For example would you like to take the mean of the temperatures or would you like to take the minimum ?
回答(1 个)
JMP Phillips
2015-8-20
编辑:JMP Phillips
2015-8-20
If I understand correctly, your data was sampled at different rates, so you need the number of samples in temperature (1921) to match the number of samples in frequency (1200).
We can do this by firstly sampling temperature at a higher rate, so that you have 2400 temperature points (2400 is an integer multiple of 1200). And then sampling the 2400 temperature points at a lower rate (i.e. every second point), so that you have exactly 1200 points.
First step: Resample the temperature data at a higher rate using MATLAB's interp function (see the MATLAB documentation) so that you have 2400 temperature points.
Second step: Remove every second sample to get a temperature vector of size 1200: temperature_size1200 = temperature_size2400(1:2:end);
Alternatively, a rough way to do it (but less precise), is to just resample temperature at the lower rate: temperature_size1200 = temperature_size1921(1:(1921/1200):end);
The problem with this approach, is that (1921/1200) is not an integer, so you lose some accuracy than before if you interpolate the data first at an integer multiple of 1200.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spectral Measurements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!