Skip to main content

Seeking help with programming?

In DataCamp you can always get help in the python terminal by typing:

help(function)

For example if you want to find about quantumworldX's pib_eigenfunction (particle in a box eigenfunction), you would use:

help(quantumworldX.pib_eigenfunction)

or, if you exported it as qw,

help(qw.pib_eigenfunction)

and you will get something similar to this:

pib_eigenfunction(x, L, n):
given x, L, and n returns an eigenfunction for the 1D particle in a box
Inputs: x -- numpy array.
        L -- scalar, length of the box.
        n -- integer

Pro Tip: This works with any python function.

If you want to install the quantumworldX library on your own computer, you can find the most recent source code at https://pypi.python.org/pypi/quantumworldX