scitools icon indicating copy to clipboard operation
scitools copied to clipboard

Additional scientific computing functionality in Python - extensions to NumPy/SciPy++

Results 23 scitools issues
Sort by recently updated
recently updated
newest added

when i run demo: from scitools.aplotter import plot then error comes: ModuleNotFoundError: No module named 'past' I used it in Centos 7, with python 3.9

Closes https://github.com/hplgit/scitools/issues/43

host the docs on readthedocs.io , doctr, other ways.

https://pypi.org/project/SciTools/ uses old URL http://scitools.googlecode.com/ and suggests downloading http://scitools.googlecode.com/files/scitools-0.8.tar.gz which is the old version and is a 404

If one uses the plot function of scitools, it does not show the plot (even with the raw_input(' ')), but it can save the figure as a pdf.

Typing "conda install --channel johannr scitools" into the terminal gives me: PS C:\Users\Robert\Documents\scitools-master\scitools-master> conda install --channel johannr scitools Using Anaconda Cloud api site https://api.anaconda.org Fetching package metadata: ...... Solving package...

What steps will reproduce the problem? Minimal non-working example: [code] import dolfin import scitools.BoxField mesh = dolfin.UnitSquareMesh(10,10) V = dolfin.FunctionSpace(mesh, 'Lagrange', 1) u = dolfin.Function(V) scitools.BoxField.dolfin_function2BoxField(u,mesh) [\code] What is the...

Function `factorize_tridiag_matrix` receives only an argument (`A`), but the very first line asks `len(b)`, which is undefined in this scope. Seeing as it is called in `solve_tridiag_linear_system` (which receives `A`...