ppc_neural_ode, a C code which uses a neural network to model an ordinary differential equation (ODE) in the form of a boundary value problem (BVP) and to approximate its solution, from Rouben Rostamian's "Programming Projects in C";
The BVP is posed over an interval [a,b], for a function u(x), satisfying
F(x,u,u',u'') = 0 for a < x < b u(a) = u(b) = 0
The information on this web page is distributed under the MIT license.
ppc_neural_ode is available in a C version.
ppc_array, a C code which allocates and frees memory for vectors and matrices of a variety of types, from Rouben Rostamian's "Programming Projects in C";