How to downsample a vector x by an integer factor M with a single statement such as for loop or conditional statements

I have already learned to use downsample()function. However, are there ways to use statements to downsample a vector?

 채택된 답변

a = 1:10;
b = downsample(a, 3) % use downsample
b = 1×4
1 4 7 10
c = a(1:3:end) % statement
c = 1×4
1 4 7 10

댓글 수: 3

Thank you for your answer! Could you please offer a solution with for loop or if statement?
"for loop" is not as efficient as above. You should not use it.
a = 1:10;
j=1;
for i=1:3:length(a)
b(j) = a(i);
j = j+1;
end
b
b = 1×4
1 4 7 10

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

릴리스

R2021a

질문:

2021년 9월 16일

댓글:

2021년 9월 16일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by