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

learn more… | top users | synonyms

2
votes
1answer
54 views

scipy.sparse __add__ method being called when adding to a regular numpy ndarray?

I'm calculating the dot product between a scipy.sparse matrix (CSC) and a numpy ndarray vector: >>> print type(np_vector), np_vector.shape <type 'numpy.ndarray'> (200,) >>> ...
0
votes
0answers
38 views

Scipy error using optimization module. Failure converting array to fortran

Trying to use scipy's optimize module to find the minimum of a function using slsqp and I'm running into some issues. The actual code calling the function is shown below: def minimizeWebEnergyLost(x, ...
0
votes
2answers
81 views

Power law with a constant factor using curve_fitting

I want to fit my x and y data using power law with a constant factor. My power law model is y(r) = F0 + F*(r)**alpha where F0 is a constant. My code is, x = [0.015000000000000001, ...
0
votes
1answer
83 views

Fitting arbitrary gaussian functions, massive memory consumption in python

I'm trying to (in python) fit a series of an arbitrary number of gaussian functions (determined by a simple algorithm still being improved) to a data set. For my current sample data set, I have 174 ...
3
votes
3answers
118 views

Numpy stateing that invalid value while calculating normalized mahalanobis distance

Note: This is for a homework assignment in my data mining class. I'm going to put relevant code snippets on this SO post, but you can find my entire program at http://pastebin.com/CzNFbLJ2 The ...
0
votes
3answers
119 views

In scikit, can dbscan use sparse matrix?

I got Memory Error when I was running dbscan algorithm of scikit. My data is about 20000*10000, it's a binary matrix. (Maybe it's not suitable to use DBSCAN with such a matrix. I'm a beginner of ...
4
votes
1answer
99 views

NumPy and SciPy. Static vs Dynamic loading

TLDR: Can I use static ATLAS/LAPACK libraries with NumPy & SciPy? Background: After building ATLAS with LAPACK with the following: wget ...
0
votes
1answer
41 views

Scipy Guassian_kde Nomalisation

I've been using scipy.stats.gausian_kde but have a few questions about its output. I've plotted the normalised histogram and the gaussian_kde plot on the same graph. Why are the y-values so vastly ...
1
vote
1answer
56 views

Multiple elements in a 0-d Numpy array

I'm reading a *.mat file (not sure of Matlab version that was used) with scipy.io.loadmat in Python 2.6, and I'm not able to work with the arrays read due to the array dimensioning. It seems that ...
0
votes
1answer
82 views

Simultaneous Equations with given conditions

to start off I have already solved this problem so it's not a big deal, I'm just asking to satisfy my own curiosity. The question is how to solve a series of simultaneous equations given a set of ...
1
vote
1answer
195 views

curve fitting by a sum of gaussian with scipy

I'm doing bioinformatics and we map small RNA on mRNA. We have the mapping coordinate of a protein on each mRNA and we calculate the relative distance between the place where the protein bound the ...
2
votes
3answers
146 views

Diagonal Matrix Exponential in Python

I'm writing a numerical algorithm with speed in mind. I've come across the two matrix exponential functions in scipy/numpy (scipy.linalg.expm2, scipy.linalg.expm). However I have a matrix that I know ...
0
votes
2answers
169 views

Calculating gradient with NumPy

I really can not understand what numpy.gradient function does and how to use it for computation of multivariable function gradient. For example, I have such a function: def func(q, chi, delta): ...
2
votes
2answers
103 views

Linear least squares in scipy - accuracy of QR factorization vs other methods

I have tried solving a linear least squares problem Ax = b in scipy using the following methods: x = numpy.linalg.inv(A.T.dot(A)).dot(A.T).dot(b) #Usually not recommended and x = ...
0
votes
1answer
41 views

Scipy.loadmat() -— SystemError: ../Objects/stringobject.c:3899: bad argument to internal function

I'm trying to load a .mat file into python that is quite large ( >75MB) and I am getting the following error. Can this be helped? Traceback (most recent call last): File "prop_keys.py", line 34, in ...
1
vote
1answer
127 views

Making a custom probability distribution to draw random samples from in SciPy

I'm looking to sum up an arbitrary number of probabilistic distributions of things using a montecarlo type simulation. I'd like to randomly sample continuous distributions of something and add them to ...
2
votes
2answers
96 views

Scipy Pearson's correlation returning always 1

I am using Python library scipy to calculate Pearson's correlation for two float arrays. Returned value for coefficient is always 1.0, even if arrays are different. For example: [-0.65499887 ...
0
votes
1answer
47 views

Alternative inputs to SciPy Radial Basis Functions

I am trying to generate a radial basis function where the input variables are defined at runtime. The SciPy.interpolate.Rbf function seems to request discrete lists for each input and output variable, ...
0
votes
2answers
106 views

numpy cov (covariance) function, what exactly does it compute?

I assume numpy.cov(X) computes the sample covariance matrix as: 1/(N-1) * Sum (x_i - m)(x_i - m)^T (where m is the mean) I.e sum of outer products. But nowhere in the documentation does it ...
1
vote
3answers
86 views

How to represent inf or -inf in Cython with numpy?

I am building an array with cython element by element. I'd like to store the constant np.inf (or -1 * np.inf) in some entries. However, this will require the overhead of going back into Python to look ...
1
vote
2answers
82 views

View a sequence of images using Python and NumPy

I am using python's pil library to display images. Now I have a sequence of frames to display as a video content. I have a np.array that contains the RGB values of all the frames. Could not find a ...
3
votes
1answer
151 views

plotting orbital trajectories in python

How can I setup the three body problem in python? How to I define the function to solve the ODEs? The three equations are x'' = -mu / np.sqrt(x ** 2 + y ** 2 + z ** 2) * x, y'' = -mu / np.sqrt(x ** ...
3
votes
2answers
94 views

Substitute for numpy broadcasting using scipy.sparse.csc_matrix

Ok I've been at this for long enough that I'm willing to ask for help. I had in my code the following expression: a = (b / x[:, np.newaxis]).sum(axis=1) where b is an ndarray of shape (M, N), and x ...
3
votes
1answer
137 views

3D Polar Plot - griddata doesn't allow cubic interpolation, only linear which results in an “unsmooth” plot

I am plotting a 3D polar plot of field strength around an antenna. A sample of the data looks like this: 0.5 0 -22 0.5 0 -21 0.5 0 -22 0.5 0 -21 0.5 0 -22 0.5 0 -22 0.5 0 -22 0.5 0 ...
1
vote
1answer
117 views

Translate matlab code to python (scipy)

I' trying to translate this matlab code to python: T = length(z); lambda = 10; I = speye(T) D2 = spdiags(ones(T-2,1)*[1 -2 1],[0:2],T-2,T); z_stat = (I-inv(I + lambda^2*D2'*D2))*z; What I got at ...
3
votes
1answer
125 views

How to call numpy/scipy C functions from Cython directly, without Python call overhead?

I am trying to make calculations in Cython that rely heavily on some numpy/scipy mathematical functions like numpy.log. I noticed that if I call numpy/scipy functions repeatedly in a loop in Cython, ...
1
vote
1answer
51 views

optimizing indexing and retrieval of elements in numpy arrays in Python?

I'm trying to optimize the following code, potentially by rewriting it in Cython: it simply takes a low dimensional but relatively long numpy arrays, looks into of its columns for 0 values, and marks ...
3
votes
1answer
67 views

using multiple types of numpy arrays in Cython function?

How can a function in Cython take two numpy arrays of different types (e.g. one array of ints, the other array of floats) as arguments? The example here ...
2
votes
2answers
148 views

Generate correlated data in Python (3.3)

In R there is a function (cm.rnorm.cor, from package CreditMetrics), that takes the amount of samples, the amount of variables, and a correlation matrix in order to create correlated data. Is there ...
1
vote
2answers
59 views

taking ratios of logs in numpy/scipy in Python

I'm trying to calculate the ratio of two log values a and b and then convert it back to non-log values. Since these are log values, the ratio c is: from numpy import * c = a - b # convert to non-log ...
0
votes
1answer
54 views

Python SciPy UnivariateSpline returns NaN - value in range

I'm trying to use SciPy's UnivariateSpline to locate a point on a curve. Unfortunately, my result is nan. Here's a minimal example: from scipy.interpolate import UnivariateSpline spline = ...
1
vote
1answer
40 views

scipy.stats seed?

I am trying to generate scipy.stats.pareto.rvs(b, loc=0, scale=1, size=1) with different seed. In numpy we can seed using numpy.random.seed(seed=233423). Is there any way to seed the random number ...
3
votes
1answer
67 views

affine_transform xy coords from gda94

I'm trying to figure out how to convert a polygon whose coordinates are in Spatial Reference GDA94 (EPSG 4283) into xy coordinates (inverse affine transformation matrix). The following code works: ...
3
votes
2answers
98 views

What is difference between numpy array.tolist() and scipy.sparse tolist()

import numpy as np from scipy.sparse import lil_matrix using numpy I get test_mat = (np.ones((4,6))) test_list = test_mat[0,:].tolist() gives test_list as a list which has 6 elements. However whe ...
0
votes
1answer
73 views

Having trouble while using scipy.integrate.odeint with python

I was trying to use odeint to solve a problem. My code is as below: import numpy as np import matplotlib.pyplot as plt from scipy.integrate import odeint eta=1.24e-9/2 def fun(x): ...
4
votes
1answer
99 views

efficient moving, robust scale estimate for python array

I'm looking for a fast and efficient way to compute a robust, moving scale estimate for a set of data. I'm working with 1d arrays of typically 3-400k elements. Up until recently I've been working ...
3
votes
1answer
65 views

Tie breaking of round with numpy

Standard numpy round tie breaking is following IEEE 754 convention, to round half towards the nearest even number. Is there a way to specify different rounding behavior, e.g. round towards zero or ...
0
votes
2answers
78 views

using fsolve to find the solution

import numpy as np from scipy.optimize import fsolve musun = 132712000000 T = 365.25 * 86400 * 2 / 3 e = 581.2392124070273 def f(x): return ((T * musun ** 2 / (2 * np.pi)) ** (1 / 3) * ...
2
votes
1answer
69 views

efficient way to get the max of each row for large sparse matrix

I have a large sparse matrix and I want to get the maximum value for each row. In numpy, I can call numpy.max(mat, axis=1), but I can not find similar function for scipy sparse matrix. Is there any ...
0
votes
1answer
125 views

ComplexWarning when calling convolve2d() in SciPy, why?

When I run from scipy.signal import convolve2d convolve2d([[2, 2, 2], [1, 2, 3], [0, 1, 0]], [[0.5], [0.5]], 'valid') I get Warning (from warnings module): File "C:\Program Files\Python ...
1
vote
2answers
84 views

Efficiently Reading Large Files with ATpy and numpy?

I've looked all over for an answer to this one, but nothing really seems to fit the bill. I've got very large files that I'm trying to read with ATpy, and the data comes in the form of numpy arrays. ...
1
vote
1answer
50 views

logm function of hermitian matrix returns non-hermitian matrix

When I use the linear algebra module in scipy to calculate the matrix logarithm of a hermitian matrix, the matrix that it outputs isn't hermitian. I first define a vector using: n = ...
2
votes
1answer
72 views

Colorbar plot with matplotlib … but in gray?

Is it possible to change the colors of the colorbar plot to grayscale ? At the moment I plot them like this: ax = fig.add_subplot(326,title='Title') cax = ax.matshow(newcm) fig.colorbar(cax) ...
1
vote
1answer
214 views

How to perform two-sample one-tailed t-test with numpy/scipy

In R, it is possible to perform two-sample one-tailed t-test simply by using > A = c(0.19826790, 1.36836629, 1.37950911, 1.46951540, 1.48197798, 0.07532846) > B = c(0.6383447, 0.5271385, ...
1
vote
2answers
88 views

Using the SciPy DCT function to create a 2D DCT-II

I am creating a 2D DCT-II in labview but want to be able to check my outputs are correct. SciPy has a nice DCT function which defaults to DCT-II but is 1D. I want to make it work for a 2D array. To ...
2
votes
1answer
50 views

Unclear start-step length calculation in scipy.optimize.fmin_cg

I recently started working with scipy.optimize and I am unclear why in fmin_cg, at start-up, sets the 'previous' value of the function to a fixed value depending on the current function value xk = ...
2
votes
1answer
41 views

Unexpected difference of spsolve and solve

I need to solve linear equations with varied sizes. Sometime the size may be 0 or 1 in which cases some errors will happen. For example, import numpy as np from numpy.linalg import solve from ...
2
votes
3answers
117 views

Quickly finding the first point at which a function equals 0 using scipy.optimize

Basically, given a function that produces outputs like this for different parameters: I want to quickly find the first x at which the function equals 0. So with parameters that produce the blue ...
1
vote
2answers
85 views

Time-series averaging in numpy/python

I have data that consists of an array of times, with 10 data points each second, and an array of intensity values corresponding to each time. So, for an example let's say that I have: times = ...
-1
votes
1answer
43 views

ValueError: failed to initialize intent(inout) array — expected elsize=8 but got 4 [closed]

I'm getting this error when I invoke scipy.optimize.l_bfgs_b I have little idea what the problem might be.

1 3 4 5 6 7 42