필터 지우기
필터 지우기

How to reference past values?

조회 수: 5 (최근 30일)
Vert
Vert 2014년 10월 16일
편집: Roger Wohlwend 2014년 10월 16일
how do I reference past values of a function?
as in f(x) = 0.7*(f(x-1))

답변 (1개)

Roger Wohlwend
Roger Wohlwend 2014년 10월 16일
편집: Roger Wohlwend 2014년 10월 16일
In general you have to use a loop for that. However, in your simple case it is not necessary.
f(x) = 0.7^x * f(0)
where f0 is the inition condition.
So if you want a vector with the first n values of the function, use the following Matlab code:
f = 0.7.^(1:n) * f0
where f0 is the initial condition, a scalar.

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by