How to use a variable coefficient in PDE Toolbox to solve a parabolic equation (Matlab)
问题 I will try to explain my doubt in the better way possible: I'm trying to solve the reaction-diffusion equation with PDE Toolbox (Matlab), the syntax to get the solution (u) is: parabolic - Solve parabolic PDE problem This MATLAB function produces the solution to the FEM formulation of the scalar PDE problem: u1 = parabolic(u0,tlist,b,p,e,t,c,a,f,d) c,a,f,d are the coefficients of the parabolic equation: d(∂u/∂t)−∇⋅(c∇u)+au=f, But I want this: u=parabolic(u0,tlist,b,p,e,t,c,@coeffunction,f,d);