Questions tagged [scitools]

SciTools is a Python package containing many useful tools for scientific computing in Python. The package is built on top of other widely used packages such as NumPy, SciPy, ScientificPython, Matplotlib, Gnuplot, etc.

26 questions
0
votes
1 answer

Easyviz and scitools.std still works on python3? There is an alternative to making films from a sequence of images?

I am studying the book 'A Primer on Scientific Programming with Python 2nd' by Hans Petter Langtangen. The book uses python2 but I am applying it in python3. The scotools.std library is widely used in the book, but I cannot import or install it in…
0
votes
1 answer

How do I install scitools module on Python3 with Anaconda?

I need to install the scitools module in Anaconda. The commands conda install scitools conda install --channel johannr scitools conda install -c asmeurer scitools don't work. I'm using Python 3 on Windows 10. I would appreciate any help.
Tanmay Bhore
  • 89
  • 2
  • 9
0
votes
0 answers

Does scitools for python 3 exist?

I'm currently working through the book "A Primer on Scientific Programming with Python", and one of the recommended packages to install is scitools. I have the Anaconda version of python 3.6 installed on a CentOS 7 machine. When I tried following…
plarles
  • 1
  • 1
0
votes
2 answers

Pip fails to install packages

I'm attempting for several hours to get the package installed, but i really got stuck and i'm so desperate right now.I tried everything here and on the web but, nothin works! i tried first using pycharm to install SciTools and then via terminal but…
user4411105
0
votes
1 answer

name 'plot' is not defined

I installed succesfully scitools_no_easyviz from conda (I work on Spyder), but I cannot import plot. To be more specific, here's my code from scitools.std import * def f(t): return t**2*exp(-t**2) t = linspace(0, 3, 51) y = f(t) plot(t,…
0
votes
1 answer

unable to import scitools python

I have just installed scitools-0.8 and I'm trying to import it using from scitools.std import * but I get an error message saying ImportError: No module named oldnumeric.mlab numpy import filed! see doc of scitools.numpytools module for how to…
user3333708
  • 387
  • 1
  • 5
  • 10
0
votes
1 answer

ImportError: No module named scitools.std,anaconda already installed

I have installed anaconda and scitools with sudo.Where is the the problem?I got this: from scitools.std import * ImportError: No module named scitools.std What should I check? echo "$PATH" /home/milenko/anaconda/bin:/`
Richard Rublev
  • 7,718
  • 16
  • 77
  • 121
0
votes
2 answers

import understand (from sciTools) gives ImportError: DLL load failed: %1 is not a valid Win32 application

I'm trying to use the Understand api for Python. import understand I've already checked ImportError: DLL load failed: %1 is not a valid Win32 application and ImportError: DLL load failed: %1 is not a valid Win32 application. But the DLL's are…
Spiky
  • 408
  • 1
  • 4
  • 11
0
votes
1 answer

Read columns from file where first row is string

What I would like to do is to read in columns from a .dat file. I have been able to do this using scitools.filetable.read_columns(). The problem that I am having is that the first row of my .dat file contains strings. How can I skip the first…
The Dude
  • 3,795
  • 5
  • 29
  • 47
0
votes
3 answers

ImportError: No module named scitools.std

I installed Anaconda, but now that I wanted to use StringFunction in scitools.std I get error: ImportError: No module named scitools.std! So I did this: sudo apt-get install python-scitools Still didn't work. How can I help my computer "find…
Mikkel Rev
  • 863
  • 3
  • 12
  • 31
-1
votes
1 answer

How to find a specific string in a .c file using the perl api of (Scitools) Understand?

I'm trying to analyse a code base (many .c files) by writing Perl script using (Scitools) Understand's Perl API. I'm aware that list of variables, functions etc. are easy to obtain for a given .c file. Probably someone who has worked with…
EnsieT
  • 91
  • 5
1
2