Borrar filtros
Borrar filtros

How to reference past values?

3 visualizaciones (últimos 30 días)
Vert
Vert el 16 de Oct. de 2014
Editada: Roger Wohlwend el 16 de Oct. de 2014
how do I reference past values of a function?
as in f(x) = 0.7*(f(x-1))

Respuestas (1)

Roger Wohlwend
Roger Wohlwend el 16 de Oct. de 2014
Editada: Roger Wohlwend el 16 de Oct. de 2014
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.

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by