Data processing
9 次查看(过去 30 天)
显示 更早的评论
Hello, How to sample data for every 40 ms. As my data is quite big (75000ms)I'd like to display only every 40th sample of my data in a form of simple table (1st row :ms), second row:values)
Thanks for your help.
0 个评论
采纳的回答
Image Analyst
2011-11-13
Just do what you did and then say
y = y(1:40:end);
By the way, that (75,000 elements) is a long, long way from being a "quite big" matrix.
6 个评论
Image Analyst
2011-11-14
I feel you're leaving off the end of the story here. What do you really plan on doing with the data? Look for spikes/peaks? Look for valleys? Look for some kind of pattern? You're not just going to visually examine thousands of points and that's the end of it. What's the next step?
Walter Roberson
2011-11-14
Sounds like a sparse() matrix might be appropriate. But it depends on how you want to examine your data. Sometimes with data like this, you are best off just using a tool such as SPSS.
更多回答(1 个)
Fangjun Jiang
2011-11-13
Here is a different way to do it.
t=[00 08 255 267 298 300];
y=[5 4 3 4 3 2];
figure(1);hold on;
stairs(t,y);
tnew=0:40:400;
index=bsxfun(@le,t',tnew);
ynew=y(sum(index));
stem(tnew,ynew);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!