whats wrong with my code?
Mostrar comentarios más antiguos
function ped1
sol =pdepe(m,@pdefun,@pdeic,@pdebc,xmesh,tspan);
u=sol(:,:,1);
function [c,f,s]= pdefun(x,t,u,DuDx)
c = V/D;
f = DuDx;
s=0;
end
ped1
Undefined function or variable 'V'.
Error in pdefun (line 2)
c = V/D;
Error in pdepe (line 246)
[c,f,s] = feval(pde,xi(1),t(1),U,Ux,varargin{:});
Error in ped1 (line 27)
sol =pdepe(m,@pdefun,@pdeic,@pdebc,xmesh,tspan);
2 comentarios
Stephen23
el 3 de Dic. de 2018
Before this line:
c = V/D;
Where are V and D defined?
Shangeetha Mahendran
el 3 de Dic. de 2018
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre PDE Solvers en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!