-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
At line 84 in the README.md, there is written
cont_f1 = axes[0].contourf(X, Y, phi.get().reshape(X.shape))
However, phi is a numpy.ndarray type and hence does not support the method get() (which is probably from dataframes?).
I could resolve this by omitting the get(), such that the line reads now
cont_f1 = axes[0].contourf(X, Y, phi.reshape(X.shape))
This reproduces the example successfully.
Metadata
Metadata
Assignees
Labels
No labels