Squeezing the data in MATLAB
3 views (last 30 days)
Show older comments
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 Comments
Walter Roberson
on 19 Aug 2015
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 ?
Answers (1)
JMP Phillips
on 20 Aug 2015
Edited: JMP Phillips
on 20 Aug 2015
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.
See Also
Categories
Find more on Spectral Measurements 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!