How to write y(n)=y(n-1)+x(n) in a way to store all values of y from n=1 to n?
조회 수: 1 (최근 30일)
이전 댓글 표시
How to write y(n)=y(n-1)+x(n) in a way to store all values of y from n=1 to n?
댓글 수: 0
채택된 답변
James Tursa
2017년 4월 20일
편집: James Tursa
2017년 4월 20일
There are vectorized ways to do this, but using your formula directly:
y = zeros(size(x));
y(1) = something; % <-- you fill this in, e.g. maybe x(1)?
n = something; % <-- you fill this in
for k=2:n % <-- for the rest of the elements through n
y(k) = y(k-1) + x(k); % <-- your formula
end
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!