analytic solution of an iterative equations
Afficher commentaires plus anciens
Hello, my question is about a unique solution of nonlinear iterative function in Matlab, to be more clear the function that I am looking for is function of time which is initial 0
if true
f(t=0)=0
f'(t)=A/B % is known,
(A-k.*f(t))/B.*t = f(t) %here A, B k is also known
f(t)=A/B.*t %f(t) is linear function of time 't' without k, but in actual case k exists
end
for variables A,B,k, I want to find out specific time when f(t)=2, with respect to known parameters, thanks for any suggestions in advance...
4 commentaires
Metin
le 17 Mar 2014
Walter Roberson
le 17 Mar 2014
So this could be written as
f(0) = 0
f' = A/B for constant A/B
? If so then f(t) = A/B * t + C for some constant C and f(0) = 0 ensures the constant is 0, leaving f(t) = A/B * t
but then that would seem to contradict your use of k unless k = 0 ??
Walter Roberson
le 17 Mar 2014
To get the expression involving k to work,
f(t) = A*B/(k*t+B)^2
which simplifies to f(t) = A/B when k is 0 -- which is different than f'(t) = A/B . Perhaps you wanted
(A-k.*f(t))/B.*t = f'(t)
Metin
le 17 Mar 2014
Réponses (0)
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!