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

learn more… | top users | synonyms

0
votes
1answer
21 views

Scipy crashes on Win64

I'm trying to use the scipy package in my 32-bit Python 2.6 on 64-bit Windows 7. I have installed Scipy 0.12.0 from the 32-bit Python Superpack binary installer. The installation went through ...
2
votes
0answers
20 views

Sparse matrix factorization with Nimfa is very slow with implicit zeros

I am trying to factorize very large matrixes with the python library Nimfa. Since the matrix is so large I am unable to instanciate it in a dence format in memory, so instead I use ...
2
votes
1answer
34 views

Scipy Sparse Matrix - Dense Vector Multiplication Performance - Blocks vs Large Matrix

I have a number of scipy sparse matrices (currently in CSR format) that I need to multiply with a dense numpy 1D vector. The vector is called G: print G.shape, G.dtype (2097152,) complex64 Each ...
0
votes
1answer
19 views

Print L and U matrices calculated by SuperLU using scipy

How can I print sparse L and U matrices calculated by splu, which uses SuperLU? My MWE: >>> import scipy >>> import scipy.sparse >>> import scipy.sparse.linalg ...
1
vote
1answer
25 views

Least Squares Minimization Complex Numbers

I've been using my Matlab, but it's my vision to eventually switch over to doing all of my analysis in Python since it is an actual programming language and a few other reasons. The recent problem ...
1
vote
0answers
30 views

How to display progress of scipy.optimize function?

I use scipy.optimize to minimize a function of 12 arguments. I started the optimization a while ago and still waiting for results. Is there a way to force scipy.optimize to display its progress ...
0
votes
0answers
56 views

What is the fastest way to compute all eigenvalues of a very big and sparse adjacency matrix in python?

I'm trying to figure out if there is a faster way to compute all the eigenvalues and eigenvectors of a very big and sparse adjacency matrix than using scipy.sparse.linalg.eigsh As far as I know, this ...
0
votes
0answers
14 views

scipy sparse matrices, copy argument

What is the function of copy argument in construction of scipy sparse arrays? scipy.sparse.lil_matrix(arg1, shape=None, dtype=None, copy=False) It doesn't seem to do anything! When I construct a ...
0
votes
0answers
21 views

How to read and write 24-bit wav file using scipy or common alternative?

Frequently, wav files are or need to be 24-bit yet I do not see a way to write or read 24-bit wav files using scipy module. The documentation for wavfile.write() states that the resolution of the wav ...
0
votes
2answers
36 views

inverse of FFT not the same as original function

I don't understand why the ifft(fft(myFunction)) is not the same as my function. It seems to be the same shape but a factor of 2 out (ignoring the constant y-offset). All the documentation I can see ...
1
vote
1answer
23 views

(Python) Estimating regression parameter confidence intervals with scikits bootstrap

I've just started to try out a nice bootstrapping package available through scikits: https://github.com/cgevans/scikits-bootstrap but I've encountered a problem when trying to estimate confidence ...
0
votes
0answers
50 views

how to get index in numpy using ufunc

numpy is great,and ufunc and use to calculate on every item. I want to calculate some data on the item,the calculate based on the neighbor of the item,so I want to get the item value and the ...
4
votes
1answer
54 views

What is the difference between cholesky in numpy and scipy?

I use Cholesky decomposition to sample random variables from multi-dimension Gaussian, and calculate the power spectrum of the random variables. The result I get from numpy.linalg.cholesky always has ...
0
votes
1answer
30 views

Python Scikit-learn: Empty Vocabulary in TF-IDF

I am using the code given in most up-voted answer to this question (Similarity between two text documents) to calculate TF-IDF between documents. However, I observe that when I run the code WITHOUT ...
1
vote
2answers
38 views

Open a structure of substructures of matlab with python

I have a structure of substructures as an output of a matlab file. Every substructure has four variables from which three are arrays. I would like to access every single value of this data with ...
0
votes
0answers
17 views

Avoid passing all local variables with scipy.weave.inline

Can someone explain this: Using scipy.weave.inline, I supply a list of variables to make available to the C code I'm calling. But in addition to this, scipy.weave.inline also passes both globals() ...
1
vote
1answer
40 views

How to do operations with two vectors of different format in python

One of my vector is in format scipy.sparse.csr.csr_matrix, the other is numpy.ndarray. I have an experimental code below: import numpy as np from scipy.sparse import csr_matrix x = np.arange(5)+1 y ...
0
votes
1answer
45 views

improving Numpy dot performance by removing arrays copy

Given a matrix QT: % ipython Python 2.7.3 In [3]: QT.dtype Out[3]: dtype('float64') In [4]: QT.__class__ Out[4]: numpy.ndarray In [5]: QT.flags Out[5]: C_CONTIGUOUS : True F_CONTIGUOUS ...
2
votes
1answer
29 views

Different results when using sklearn RandomizedPCA with sparse and dense matrices

I am getting different results when Randomized PCA with sparse and dense matrices: import numpy as np import scipy.sparse as scsp from sklearn.decomposition import RandomizedPCA x = ...
0
votes
1answer
9 views

“image not found” with scipy.stats

Does anybody know what could cause this error with python? I have scipy installed but when I try to use scipy.stats it complains that "image not found"
1
vote
1answer
32 views

Unable to unwrap image in OpenCV

I am trying to convert an image from cartesian to polar so that I can unravel the image, but I am getting a runtime error. If you are curious how this looks visually, see this example. Code: import ...
1
vote
0answers
42 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 = ...
2
votes
2answers
43 views

Interpolaton algorithm to correct a slight clock drift

I have some sampled (univariate) data - but the clock driving the sampling process is inaccurate - resulting in a random slip of (less than) 1 sample every 30. A more accurate clock at approximately ...
2
votes
1answer
23 views

scipy.misc.imread creates an image with no size or shape

I'm trying to get scipy.misc.imread to just read in an image and tell me it size, which I've been able to do fine on other computers but it's failing for me on a new Mac: Python 2.7.4 (default, May ...
2
votes
1answer
39 views

Retrieve value from interpolated function

I am very new to python, and as a project I decided to write my Mathematica project in python to see how it works, hence the code is written in as close a style to Mathematica as possible. I am ...
4
votes
2answers
69 views

Is there universal if function in numpy?

I have three series. I need to do the following operation element-wise: Compare values from the first and second series. If first is larger take arc-sinus of the element from the third series. ...
0
votes
1answer
31 views

How to import a site-package from rJython?

I am trying to call some functions in openopt package for Python from R using the rJython package. I have the NumPy, SciPy, and OpenOpt installed for Python 2.7.4 on my 64 bit windows 7. Importing ...
-3
votes
1answer
27 views

Python: Determine assigned serial port my hardware connected to [closed]

Microcontroller interfacing with Windows PC via USB CDC creating virtual serial port. Windows assign port number randomly depend on availability, USB port and differs from computer to computer. The ...
1
vote
1answer
58 views

Optimizing K (ideal # of clusters) Using PyCluster

I'm using PyCluster's kMeans to cluster some data -- largely because SciPy's kMeans2() produced an insuperable error. Mentioned here. Anyhow the PyCluster kMeans worked well, and I am now attempting ...
2
votes
1answer
39 views

How does numpy.linalg.inv calculate the inverse of an orthogonal matrix?

I'm implementing a LinearTransformation class, which inherits from numpy.matrix and uses numpy.matrix.I to calculate the inverse of the transformation matrix. Does anyone know whether numpy checks ...
0
votes
1answer
60 views

What is the Python (numpy or scipy or Pandas) equivalent for R's adjboxStats function?

I do use R to get the outliers for data set and I do use this snippet in R and it works like it's advertised to! library("robustbase") adjboxStats(c(11232.1, 234.2, 3445532344.3, 34302.3, 203.9, ...
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 ...
0
votes
1answer
38 views

Gensim ImportError in PyCharm: No module named scipy.sparse

I am on Mac OS X 10.8.3 (Mountain Lion) and am trying to run a script in PyCharm. Python 2.7.2 is installed, I have installed Canopy and Gensim. I just do not understand what could be causing the ...
1
vote
1answer
26 views

class method as a model function for scipy.optimize.curve_fit

There is a statement in the manual of curve_fit that The model function, f(x, ...). It must take the independent variable as the first argument and the parameters to fit as separate remaining ...
2
votes
1answer
67 views

How do I put a constraint on SciPy curve fit?

I'm trying to fit the distribution of some experimental values with a custom probability density function. Obviously, the integral of the resulting function should always be equal to 1, but the ...
1
vote
1answer
50 views

Error when calling scikit-learn using AMD64 build of Scipy on Windows

I am getting this error on this line: from sklearn.ensemble import RandomForestClassifier The error log is: Traceback (most recent call last): File "C:\workspace\KaggleDigits\KaggleDigits.py", ...
1
vote
1answer
70 views

Update initial condition in ODE solver each time step

I am wanting to solve a system of ODEs where for the first 30,000 seconds, I want one of my state variables to start from the same initial value. After those 30,000 seconds, I want to change the ...
1
vote
1answer
54 views

Reshape sparse matrix efficiently, Python, SciPy 0.12

In another post regarding resizing of a sparse matrix in SciPy the accepted answer works when more rows or columns are to be added, using scipy.sparse.vstack or hstack, respectively. In SciPy 0.12 the ...
3
votes
1answer
47 views

Vectorizing multiple vector-matrix multiplications in NumPy

I am having trouble figuring out how to arrange my axes so I can perform the following operations in a vectorized way. Essentially I have an array of vectors, an array of matrices, and I want to ...
0
votes
2answers
63 views

Python / Scipy - implementing optimize.curve_fit 's sigma into optimize.leastsq

I am fitting data points using a logistic model. As I sometimes have data with a ydata error, I first used curve_fit and its sigma argument to include my individual standard deviations in the fit. ...
0
votes
2answers
43 views

get the best features from matrix n X m

I have a X matrix with 1000 features (columns) and 100 lines of float elements and y a vector target of two classes 0 and 1, the dimension of y is (100,1). I want to compute the 10 best features in ...
0
votes
1answer
48 views

Residuals of Random Forest Regression (Python)

When using RandomForestRegressor from Sklearn, how do you get the residuals of the regression? I would like to plot out these residuals to check the linearity.
-1
votes
1answer
39 views

Install exe errors Scipy, MatPlotLib etc [closed]

I am trying to install some Python packages like matplotlib and scipy on my computer in Windows. I installed Python 3.3 the default way. It's located at C:/Python33 But some exe's say Python ...
2
votes
1answer
42 views

Python TypeError using Scipy's coo_matrix.todense()

I recently encountered difficulty when converting a coo_matrix to a dense matrix using scipy. I have a dtype float16 sparse matrix and attempt to convert it to a dense matrix. The error complains ...
2
votes
1answer
83 views

How can I use a Pandas data structure to calculate autocorrelation?

I have data in text files that I have successfully parsed into a MultiIndex pandas structure however I don't know if what I have will do what I want it to do. What I have is a lot of time series data ...
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): ...
3
votes
1answer
73 views

Fourier transform / iterative deconvolution fitting in python using numpy/scipy

I would like to fit a fluorescent lifetime curve. These curves are given by the convolution of the instrument response function (IRF, assumed Gaussian) and a (multi) exponential decay: Where G is ...
1
vote
0answers
52 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 ...
2
votes
3answers
92 views

How to get euclidean distance on a 3x3x3 array in numpy

say I have a (3,3,3) array like this. array([[[1, 1, 1], [1, 1, 1], [0, 0, 0]], [[2, 2, 2], [2, 2, 2], [2, 2, 2]], [[3, 3, 3], [3, 3, 3], ...
0
votes
1answer
46 views

“argument must be a callable function” when using scipy.integrate.quad

I've written some code that enables me to take data from DICOM files and separate the data into the individual FID signals. from pylab import * import dicom import numpy as np import scipy as sp ...

1 2 3 4 5 40