I am using 'idsolver' to solve a integro-differential equation. But having the problem when run the program "Undefined function or variable 'idsolver' ". How can I solve this problem?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Md Abu Helal
el 11 de Oct. de 2018
xinterval= [0 6];
n=1;
Initcond =0;
c= @(x,y) x*(1+x^0.5)*exp(-x);
d= @(x) 1;
k =@(x) x;
alpha =@(x) x;
beta = @(x) 2;
Tol = 1e-8;
Flag =0;
idsolver(xinterval, n ,Initcond, c,d,k,alpha,beta,Tol,Flag)
2 comentarios
Respuesta aceptada
Stephan
el 11 de Oct. de 2018
https://de.mathworks.com/matlabcentral/answers/95224-can-matlab-solve-integro-differential-equations
In the comments to this answer is a link to download idsolver.
Since this is not a Part of Matlab Release you have to download and copy the files to one of your Matlab path by yourself.
Then it can be used.
Best regards
Stephan
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Downloads en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!