### Schrodinger1D

Solves the 1D time-independent Schrödinger equation.

$$
H \psi = E \psi
$$

where $H$ is the Hamiltonian operator, $\psi$ is the wave function, and $E$ is the energy. The Hamiltonian includes the kinetic energy term represented by the Laplacian and a potential energy term.

---

This example is implemented in:
- [C++](https://github.com/csrc-sdsu/mole/blob/main/examples/cpp/schrodinger1D.cpp)
