I have a function beta defined as an integral. I want to define another function alpha "being the integral of that function".
9 views (last 30 days)
Show older comments
In particular I want to solve the differential equation d alpha(s)/ds = 1/2* beta(s)^2 and get the function alpha. Beta is defined as follows:
fun1=@(x) -exp((-c*x*b+a*exp(-b*x)-a)/b); beta=@(k) (exp(-(-c*k*b+a*exp(-b*k)-a)/b)*integral(fun1,0,k)); The problem is that I can't for example do something like alpha= @(x) integral(beta,0,x)
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!