SciPy is an open source library of algorithms and mathematical tools for the Python programming language.

learn more… | top users | synonyms

3
votes
0answers
50 views

Scipy sparse matrices - purpose and usage of different implementations

Scipy has many different types of sparse matrices available. What are the most important differences between these types, and what is the difference in their intended usage? I'm developing a code ...
3
votes
0answers
352 views

Using sparse matrices/online learning in Naive Bayes (Python, scikit)

I'm trying to do Naive Bayes on a dataset that has over 6,000,000 entries and each entry 150k features. I've tried to implement the code from the following link: Implementing Bag-of-Words Naive-Bayes ...
3
votes
0answers
449 views

add2virtualenv (virtualenv wrapper) does not work with scipy

I want to create a virtualenv without global python packages, but with the scipy distribution that is shared; installing scipy takes quite a while and I don't want to go through the motions too often. ...
2
votes
0answers
27 views

Halt scipy odeint on first error

As I'm developing and testing code, I may make a simple error, like a NameError. When I use scipy.integrate.odeint, odeint will print the error message, but keep integrating for however many timesteps ...
2
votes
0answers
68 views

Can scipy.optimize.brute() optimize vector functions?

Looking through the documentation of scipy.optimize.brute(), it is not clear to me whether it supports vector functions, and if so, how the range is specified for each coordinate. For example, ...
2
votes
0answers
82 views

function for three-dimensional display of array of binary image matrices (Python, OpenCV, C++)

I have available a database of medical grade CT scans. Each scan series consists of about 30 ordered slides, each parallel to the next (dimensions consistent among images). I would like to generate a ...
2
votes
0answers
293 views

linear interpolation with interp2d or scipy.interpolate.RectBivariateSpline

I'm quite new to python and want to interpolate in a regular grid. First, i tried it with interp2d. This worked for most cases, however for some cases (the only difference were the values) there was a ...
2
votes
0answers
124 views

Read Matlab matrix into Python

When I'm trying to read a Matlab matrix into python, I get the following error >>> scipy.io.loadmat("Dynamical.mat") Traceback (most recent call last): File "<stdin>", line 1, in ...
2
votes
0answers
63 views

Searching a dictionary in scipy weave

I am working on a project to optimize an algorithm that contains a huge for-loop but has to be called in Python so I am using the scipy weave tool. One of the lines of code I have is in Python: if ...
2
votes
0answers
81 views

Profiling scipy.weave inline codes

I use scipy.weave for performance critical parts in python scripts. If possible, I parallelize these codes using OpenMP. I experience bottlenecks in some cases, which is probably due to false sharing. ...
2
votes
0answers
155 views

Constrain Mayavi mouse drag to rotating Earth around its axis

Using iPython Notebook, I have been able to bring up a globe of the Earth with code like: from mayavi import mlab from mayavi.sources.builtin_surface import BuiltinSurface ocean_blue = (0.4, 0.5, ...
2
votes
0answers
73 views

Infinite time taken by scipy hypergeom function for some particular values

I am using the hypergeom function from scipy.stats. Although it works for most of the parameter, it do not yeild anything for some particular parameters. For eg. the following works, from scipy ...
2
votes
0answers
182 views

Cubic interpolation with derivatives in numpy

A recent immigrant to Python and scientific computing with Python. This is a question to avoid any duplication of code that might already exist. I have a field that is sampled as a function of x and ...
2
votes
0answers
84 views

scipy.optimize has confusing behavior

I'm using scipy.optimize to solve a minimization problem. But what it's doing doesn't make any sense. If I don't set a maximum number of iterations, it runs forever (well, 12 hours at least). So I set ...
2
votes
0answers
118 views

minimization in scipy, algorithm to find all local minima of a N dimensional scalar function

Does anybody know about a powerful routine/algorithm (preferrably in scipy/python) to localise "all" the local minima for a scalar real function of N variables in a defined ("rectangular") region of ...
2
votes
0answers
268 views

grid point interpolation of wrf data to lat lon in python with numpy and scipy

Im new to python and I'm trying to write a function that will take a numpy array from a netcdf file with dimensions [time,height,longitude,latitude] and interpolate the function to a specified lat and ...
2
votes
0answers
103 views

linear system connections in python with scipy

I am currently using Scipy's signal processing module scipy.signals to examine linear time invariant (LTI) systems. I would like to know how best to connect the systems together. For example, say I ...
2
votes
0answers
238 views

Deploying scientific python algorithm on Amazon ec2

I have a Python scientific model that calls some C code and uses numpy, scipy, and many geographic analysis modules. I would like to deploy it on EC2 but I don't know much about EC2 yet. I have ...
2
votes
0answers
81 views

Changing from a generic to a tuned atlas version

I have Fedora 16 with the atlas-sse3 package installed and used by numpy and scipy. All 3 packages are from the distribution's repository. My question is, if i download a source rpm of the Atlas ...
2
votes
0answers
264 views

Sane cubic interpolation for “large” data set, alternative to interp1d?

I am working with audio data, so my data sets are usually around 40000 to 120000 points (1 to 3 seconds). Currently I am using linear interpolation for some task and I would like to use cubic ...
2
votes
0answers
174 views

Vectorized adaptive quadrature of vector-valued function

I'm looking for a super duper numerical quadrature function. It should have the following three properties: Adaptive - it automatically adjusts the density of sampling points to fit the integrand. ...
2
votes
0answers
168 views

serialize instances of scipy rv_continuous and rv_discrete subclasses

I am using the distribution classes in scipy.stats.distributions and need to serialize instances for storage and transfer. These are quite complex objects, and they don't pickle. I am trying to ...
2
votes
0answers
100 views

How to get first-order optimality from scipy.optimize module

If I have this equation f(v,R,xi)=2/v*((((((v*t0/2)+R))*2+((xi-x0)*2))**0.5)-R). How to get the first-order optimality from that equation when I use that equation to get min v,R using ...
1
vote
0answers
40 views

1D irregular grid to 1d regular grid

I want to interpolate values in a 1D array from an irregular grid to a regular grid. For example, imagine that the original data has values at irregularly spaced X coordinates: source_x = ...
1
vote
0answers
76 views

Is this a bug of scipy RectBivariateSpline?

I am trying to do interpolation as below but the result is seemingly the result of a bug. I want to know if anyone had the same problem. img: input image (numpy ndrarray) of h-by-w img data looks ...
1
vote
0answers
28 views

Parallel numerical integration using python

I would like to numerically integration a function using multiple cpus in python. I would like to do something like: from scipy.integrate import quad import multiprocessing def FanDDW(arguments): ...
1
vote
0answers
51 views

unable to read some .wav files using scipy.io.wavread.read()

I am trying to read .wav file using scipy.io.wavread. It reads some file properly. For some files its giving following error... Warning (from warnings module): File ...
1
vote
0answers
16 views

Evaluate SmoothBivariateSpline over a grid

I have three columns of unstructured data and would like to do a bivariate spline fit over them. I am not yet too good with classes in Python so I don't understand exactly how to do this. To show my ...
1
vote
0answers
76 views

Scipy reads in wav file, writes out white noise

I'm an all-around uber-noob when it comes to Python and Scipy, so bear with me. I have a piece of code that reads in a wav file (2 second guitar chord recorded on proTools and exported as a 44100 Hz ...
1
vote
0answers
80 views

Python/Numpy/Scipy: Draw Poisson random values with different lambda

My problem is to extract in the most efficient way N Poisson random values (RV) each with a different mean/rate Lam. Basically the size(RV) == size(Lam). Here it is a naive (very slow) ...
1
vote
0answers
66 views

Python weave is abnormally slow when using calloc

I use the following code to make an in-place forward-backward FIR filtering : lena = len(a) lenb = len(b) convol = zeros(a.shape) code = """ // Forward convolution int pad = ...
1
vote
0answers
81 views

Bivariate structured interpolation of large array with NaN values or mask

I am trying to interpolate regularly gridded windstress data using Scipy's RectBivariateSpline class. At some grid points, the input data contains invalid data entries, which are set to NaN values. To ...
1
vote
0answers
259 views

Python minimize function: passing additional arguments to constraint dictonary

I don't know how to pass additional arguments through the minimize function to the constraint dictionary. I can successfully pass additional arguments to the objective function. Documentation on ...
1
vote
0answers
220 views

Numpy installation dependency

I am trying to update my machine and have ran into a problem. I followed instructions on this page: http://www.scipy.org/Installing_SciPy/Linux . It seems the newer Numpy/Scipy versions want an ...
1
vote
0answers
119 views

SciPy interp2d(linear) results are different than MatLab interp2(linear)

I'm converting a MatLab program to Python, and I'm having problems understanding why scipy.interpolate.interp2d(linear) is giving different results than MatLab interp2(linear). i know ...
1
vote
0answers
49 views

Scipy test fail after install. Is it bad?

====================================================================== FAIL: test_io.test_imread ---------------------------------------------------------------------- Traceback (most recent call ...
1
vote
0answers
56 views

uncertainty in a best fit gradient with error bars

I want to obtain a best fit gradient to my data, which I have been able to do using scipy.stats.linregress. But is there an equivalent in which the error in the fit takes into account the error bars ...
1
vote
0answers
132 views

Lorentzian scipy.optimize.leastsq fit to data fails

since I took a lecture on Python I wanted to use it to fit my data. Although I have been trying for a while now, I still have no idea why this is not working. What I would like to do: take one ...
1
vote
0answers
88 views

how to deploy a C# application that calls numpy through IronPython

I'm writing a C# GUI application where I'd like to use numpy, which I have used under Python 2.7 extensively and which is very fast and easy to program. (I still find the GUI work in C# much easier to ...
1
vote
0answers
211 views

Heightmap from contour lines with SciPy griddata

I have a topographic map with height contour lines and want to generate a heightmap from it(grid with each cell having height as value) with scipy.interpolate.griddata. My idea is to add points of the ...
1
vote
0answers
68 views

Why does this scipy.odr fit using custom jacobians segfault?

I am trying to use scipy.odr to fit measured data points to my model. While fitting without specifying jacobians works, but produces bad results for some models, I get segmentation faults when ...
1
vote
0answers
127 views

Scipy - Cookbook - Plotting Images with Special Values - Won't work

I am trying to run an example from the Scipy Cook Book and cannot get it to run. I am using python 2.7 (Numpy version 1.6.2, Matplotlib 1.1.1) The code is located at ...
1
vote
0answers
94 views

Setting pixel value to its percentile in a neighbourhood

For spatial analysis purposes, I am trying to set up a filter that would, for a pixel in a given neighbourhood, give the percentile of this pixel in its neighbourhood (defined by a structuring ...
1
vote
0answers
103 views

Gathering an array of different sizes on various processes into one array with MPI and mpi4py in Python

I have matrix's on a bunch of different processes but they are all not necessarily the same size so I don't think I can use comm.gather() or equivalents. Therefore, I have written my own function but ...
1
vote
0answers
112 views

Import curve_fit is returning no errors but wrong values

Hello and thank you in advance for your help. I have to fit a curve with some data. Here is my code : #!/usr/bin/python import numpy import sys import scipy import pylab from scipy.optimize import ...
1
vote
0answers
120 views

Scipy not working with python 3 but does with 2.6(default)

I have installed Scipy by build and install from the terminal. But I get the following error when I try to execute the following simple code: from scipy.stats.mstats_basic import gmean ...
1
vote
0answers
80 views

how to use scipy.odeint to get the volume of a truncated sphere?

I'm struggling with using scipy.odeint, I used tplquad, but how can I used odeint to get the volume of (truncated)sphere? Thanks import scipy from scipy.integrate import quad, dblquad, tplquad from ...
1
vote
0answers
221 views

Import error of Cephes Scipy library within WinPython

I'm trying to test the WinPython environment, a portable Python environment, in order to create a version featuring more packages. I'm working in Windows Vista 32 bit (but the underlying CPU is 64 ...
1
vote
0answers
84 views

Linking numpy/scipy to serial ATLAS

My operating system is Fedora 16 (although I have had the same issue on other distros). I want to build numpy/scipy linking to serial ATLAS (rather than threaded). It would seem this involves ...
1
vote
0answers
602 views

Scipy installation through easy-install on windows 7

I try to install Scipy on windows 7 I followed guide to install ATLAS/BLAS from here http://abel.ee.ucla.edu/cvxopt/install/index.html but after I run easy-install scipy I have an error: ...

1 2 3 4 5 6