How to take 1 out of every 10 values from a vector?
19 ビュー (過去 30 日間)
古いコメントを表示
Hello, I have problems with a vector that I am working with, it has more than 10,000 elements, but I just need to know the trend of these, so I would like to take 1 out of every 10 values to graph it, could you suggest a way to obtain it please?
0 件のコメント
回答 (1 件)
Manikanta Aditya
2024 年 7 月 10 日
To take 1 out of every 10 values from a vector in MATLAB, you can use indexing.
Here is how you can do it:
% Example original vector
original_vector = 1:10000; % Replace this with your actual vector
% Take 1 out of every 10 values
sampled_vector = original_vector(1:10:end);
% Now you can plot the sampled vector to see the trend
plot(sampled_vector);
title('Sampled Vector Trend');
xlabel('Index');
ylabel('Value');
Hope this helps!
4 件のコメント
Image Analyst
2024 年 7 月 10 日
To learn other fundamental concepts, invest 2 hours of your time here:
If this Answer solves your original question, then could you please click the "Accept this answer" link to award the answerer with "reputation points" for their efforts in helping you? They'd appreciate it. Thanks in advance. 🙂 Note: you can only accept one answer (so pick the best one) but you can click the "Vote" icon for as many Answers as you want. Voting for an answer will also award reputation points.
参考
カテゴリ
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!