How to write y(n)=y(n-1)+x(n) in a way to store all values of y from n=1 to n?

5 次查看(过去 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?

采纳的回答

James Tursa
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 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by