gistlib
other matlab categories
numerical-method code snippets in matlab
create a function that will perform newton's method without the user inputting the derivative in matlab
t(i, n+1) = t(i, n) + alpha * dt / dx^2 * (t(i+1, n) - 2 * t(i, n) + t(i-1, n)); in matlab
gistlib
by LogSnag