sampling pairs of elements
Show older comments
Hi,
I'm trying to sample data from two vectors simultaneously, one is a population value and the other a point in time. I need to get the data to be sampled as a pair, that is, I need to be able to sample the population and retain the time at which it occurs. Is there a way to do that?
Thanks!
Answers (2)
dpb
on 27 Feb 2015
0 votes
Select the sample from the indices 1:length(vector) and the use that to select the elements.
Guillaume
on 28 Feb 2015
One simple way:
popvalues = [1 5 8 10 3 6 8 9 10 54 23 1]; %for example
poptimes = [4 10 16 14 12 18 20 24 22 2 6 8]; %for example
for sample = [popvalues; poptimes]
%do something with sample
%...
end
Categories
Find more on Descriptive Statistics 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!