Tagged Questions
5
votes
3answers
97 views
Speed up random matrix computation
I am creating random Toeplitz matrices to estimate the probability that they are invertible. My current code is
import random
from scipy.linalg import toeplitz
import numpy as np
for n in ...
4
votes
2answers
141 views
Test if matrix is invertible over finite field
I would like to test if a particular type of random matrix is invertible over a finite field, in particular F_2. I can test if a matrix is invertible over the reals using the following simple code.
...
2
votes
1answer
155 views
Compute Gamma(x+1/2)/Gamma(x)
I need to compute Gamma(x+1/2)/Gamma(x) for reasonably large x. If I just use http://docs.scipy.org/doc/scipy/reference/generated/scipy.special.gamma.html it fails as the denominator and numerator ...
0
votes
1answer
135 views
NonLinearModelFit in scipy (leastsq) with weightings
I am very new to scipy so bare with me please :-)
I have been using mathematica recently to mess around with my data. I have a method of calculating an x,y coordinate from 4 or more distance ...
2
votes
1answer
155 views
Checking Gradients with Scipy
I want to use scipy.optimize.check_grad to check the gradient of my implementation of the sigmoid function; here's my Python function:
def sigmoid(x, gradient=False):
y = 1 / (1 + numpy.exp(-x))
...
4
votes
2answers
279 views
Poisson confidence interval with numpy
I'm trying to put Poisson continuous error bars on a histogram I'm making with matplotlib, but I can't seem to find a numpy function that will given me a 95% confidence interval assuming poissonian ...
1
vote
1answer
75 views
Scipy arpack eigs versus eigsh number of eigenvalues
In scipy's ARPACK bindings, one cannot calculate all of the eigenvalues of a matrix. However, I find that eigsh is able to calculate n - 1 eigenvalues, while eigs is only able to calculate n - 2 ...
4
votes
3answers
398 views
Integrating a multidimensional integral in scipy
Motivation: I have a multidimensional integral, which for completeness I have reproduced below. It comes from the computation of the second virial coefficient when there is significant anisotropy:
...
8
votes
1answer
262 views
Parseval's theorem in Python
I'm trying to get some grip on pythons fft functionality, and one of the weird things that I've stumbled on is that Parseval's theorem doesn't seem to apply, as it gives a difference of about 50 now, ...
5
votes
3answers
329 views
Solving simultaneous multivariate polynomial equations with python
edit: the reference I got my equations from contained a couple of errors. I've fixed it here. Solutions might actually make sense now!
When a two layer fluid flows over topography, there exist a ...
0
votes
1answer
283 views
Multiple variables in SciPy's optimize.minimize
According to the SciPy documentation it is possible to minimize functions with multiple variables, yet it doesn't tell how to optimize on such functions.
from scipy.optimize import minimize
from math ...
3
votes
1answer
539 views
Pearson correlation coefficient 2-tailed p-value meaning [closed]
from the sciPy library I used: scipy.stats.stats import pearsonr to calculate the correlation coefficient for two arrays and I got a value of: (0.80751532276005755, 0.19248467723994242).
I thought ...
2
votes
1answer
97 views
Linear regression of arrays containing NANs in Python/Numpy
I have two arrays, say varx and vary. Both contain NAN values at various positions. However, I would like to do a linear regression on both to show how much the two arrays correlate.
This was very ...
1
vote
2answers
139 views
How can I solve an equation like 'x^3/3x == 4' using Scipy? [closed]
or another Open Source Python Library: Numpy, Matplotlib ...
4
votes
4answers
832 views
generating a pseduo-random positive definite matrix
I wanted to test a simple Cholesky code I wrote in C++. So I am generating a random lower-triangular L and multiplying by its transpose to generate A.
A = L * Lt;
But my code fails to factor A. So ...
3
votes
1answer
791 views
Scipy Derivative
I have a question about the derivative function of Scipy. I used it last night and got some odd answers. I tried again this morning with some simple functions and got some right answers and some ...
3
votes
1answer
410 views
Parametric Surface Creation in Python
Is there a Python module for handling parametric (u-v) surfaces? I'm looking for something that's the 3D analogue to scipy.interpolate's spline functions, where I can create parametric splines through ...
1
vote
2answers
140 views
How to calculate estimation for monotonically growing sequence in python?
I have a monotonically growing sequence of integers. For example
seq=[(0, 0), (1, 5), (10, 20), (15, 24)].
And a integer value greater than the largest argument in the sequence (a > ...
5
votes
3answers
645 views
harmonic mean in python
The Harmonic Mean function in Python (scipy.stats.hmean) requires that the input be positive numbers. For example:
from scipy import stats
print stats.hmean([ -50.2 , 100.5 ])
results in:
...
-4
votes
1answer
325 views
Complex Roots of equation in Python [closed]
I am trying to solve the following equation,
def f(u1, u2, u3, u4, a11, a16, a12, a66, a26, a22):
return a11*u4-2*a16*u3+(2*a12+a66)*u2-2*a26*u1+a22
where u1 to u4 are complex variables that I ...
1
vote
2answers
431 views
Negative exponent with NumPy array operand
standard power operation (**) in Python does not work for negative power! Sure I could write the formula otherwise, with divide and positive power. However, I am checking optimization routine result, ...
6
votes
1answer
156 views
Python: Solving Multiple Linear Systems using Threads
I am attempting to solve multiple linear systems using python and scipy using threads. I am an absolute beginner when it comes to python threads. I have attached code which distils what I'm trying to ...
15
votes
2answers
610 views
Is there an “enhanced” numpy/scipy dot method?
Problem
I would like to compute the following using numpy or scipy:
Y = A**T * Q * A
where A is a m x n matrix, A**T is the transpose of A and Q is an m x m diagonal matrix.
Since Q is a diagonal ...
2
votes
1answer
211 views
efficient numpy zero-order hold
Is there an efficient way to resample a numpy array using zero-order hold? Ideally something with a signature like that of numpy.interp?
I'm aware of the scipy.interpolate.interp1d, but I'm sure that ...
3
votes
4answers
667 views
numerically stable inverse of a 2x2 matrix
In a numerical solver I am working on in C, I need to invert a 2x2 matrix and it then gets multiplied on the right side by another matrix:
C = B . inv(A)
I have been using the following definition ...
1
vote
2answers
1k views
Alternative for scipy.stats.norm.pdf?
Does anyone know of an alternative for scipy.stats.norm.pdf()? I'm hosting my python site on Google App Engine and Google doesn't support SciPy.
I've tried this function, but that didn't return the ...
1
vote
1answer
846 views
pure python code for multivariate linear regression
Due to a bug (perhaps in the numpy distribution I'm using), I can't use numpy.linalg.lstsq. And every statistics library I found didn't install under python 3 (on Windows).
Does someone have pure ...
13
votes
1answer
1k views
Continuous mutual information in Python
[Frontmatter] (skip this if you just want the question):
I'm currently looking at using Shannon-Weaver Mutual Information and normalized redundancy to measure the degree of information masking ...
4
votes
5answers
401 views
How do I compute the logarithm of 1 minus the exponent of a given small number in python
I am performing a probability computation. I have many very very small numbers, all of which I want to subtract from 1, and do so accurately. I can accurately compute the logarithm of these small ...
3
votes
2answers
1k views
Spline representation with scipy.interpolate: Poor interpolation for low-amplitude, rapidly oscillating functions
I need to (numerically) calculate the first and second derivative of a function for which I've attempted to use both splrep and UnivariateSpline to create splines for the purpose of interpolation the ...
2
votes
1answer
2k views
Adding 2 matrix and Multiplying 2 matrix in python by using scipy/numpy
I am trying to use scipy and numpy to perform matrix addition and multiplication.
I have 2 matrix "a" and "b". my goal is to add "a" and "b" together and store the result into a matrix "c"
Also I ...
1
vote
3answers
966 views
3d integral, python, integration set constrained
I wanted to compute the volume of the intersect of a sphere and infinite cylinder at some distance b, and i figured i would do it using a quick and dirty python script. My requirements are a <1s ...
4
votes
3answers
2k views
Check for positive or semi-positive definite matrix
I want to check if a matrix is positive or semi-positive definite using Python.
How can I do that? Is there a dedicated function in scipy for that or in other modules?
1
vote
1answer
250 views
Calculate Matrix Determinants of minors!
i want to caluculate Matrix determinants of minors in Python, maybe using scipy or some other package.
any suggestions?
2
votes
6answers
489 views
Condensed matrix function to find pairs
For a set of observations:
[a1,a2,a3,a4,a5]
their pairwise distances
d=[[0,a12,a13,a14,a15]
[a21,0,a23,a24,a25]
[a31,a32,0,a34,a35]
[a41,a42,a43,0,a45]
[a51,a52,a53,a54,0]]
Are given ...
1
vote
1answer
343 views
numpy.linalg.lstsq equivalent in Apacha Commons Math Java library?
I have the following call to numpy.linalg.lstsq:
http://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.lstsq.html
x = [[ 0.69314718]
[ 1.09861229]
[ 1.38629436]
[ 1.60943791]
[ ...
-1
votes
5answers
928 views
Difference between data sets
I have a two data sets as lists, for example:
xa = [1, 2, 3, 10, 1383, 0, 12, 9229, 2, 494, 10, 49]
xb = [1, 1, 4, 12, 1100, 43, 9, 4848, 2, 454, 6, 9]
Series are market data that may ...
4
votes
3answers
1k views
Application of Boundary Conditions in finite difference solution for the heat equation and Crank-Nicholson
The code below solves the 1D heat equation that represents a rod whose ends are kept at zero temparature with initial condition 10*np.sin(np.pi*x).
How are the Dirichlet boundary conditions (zero ...
3
votes
3answers
479 views
N dimensional arrays - Python/Numpy
just wondering if there is any clever way to do the following.
I have an N dimensional array representing a 3x3 grid
grid = [[1,2,3],
[4,5,6],
[7,8,9]]
In order to get the first ...
2
votes
1answer
929 views
good numerical solution for LDA transformation
I'm computing an LDA (linear discriminant analysis) transform, for an application I'm working on, and I've been following these notes (starting at page 36, especially slide 47 in green).
I'm doing ...
1
vote
3answers
257 views
function for computing bicoherence
Dear all
I'm looking for a numpy/scipy function to compute bicoherence and auto-bicoherence fore the studying of 3-wave interaction.
Thank you for all the possible help
nicola
9
votes
6answers
2k views
Calculating e (base of the natural log) to high precision in python?
Is it possible to calculate the value of the mathematical constant, e with high precision (2000+ decimal places) using python?
I am particularly interested in a solution either in or that integrates ...
3
votes
3answers
551 views
Libraries for manipulating multivariate polynomials
I need to write some code that deals with generating and manipulating multivariable polynomials. I'll outline my task with a simplified example.
Lets say I am given three expressions: 2x^2, 3y + 1, ...
12
votes
6answers
6k views
How to make scipy.interpolate give an extrapolated result beyond the input range?
I'm trying to port a program which uses a hand-rolled interpolator (developed by a mathematician colleage) over to use the interpolators provided by scipy. I'd like to use or wrap the scipy ...
13
votes
4answers
3k views
Improving Numpy Performance
I'd like to improve the performance of convolution using python, and was hoping for some insight on how to best go about improving performance.
I am currently using scipy to perform the convolution, ...
9
votes
14answers
23k views
Simplest way to solve mathematical equations in Python
Short Question:
Lets say, I want to solve Project Euler problem 9 using Python and some equation solving libraries.
a + b + c = 1000.
a2 + b2 = c2
How do you do it?
Long Question:
I want to ...
0
votes
3answers
2k views
fitting parameters of ODEs while using octave/matlab ODE solver
I am using OdePkg in Octave to solve a system of stiff ODEs, e.g. by ode5r:
function yprime = myODEs(t,Y,param)
yprime = [
- param(1) * Y(1); # ODE for Y(1)
...
4
votes
2answers
10k views
Multiple regression in Python
I am currently using scipy's linregress function for single regression. I am unable to find if the same library, or another, is able to do multiple regression, that is, one dependent variable and more ...
11
votes
4answers
3k views
Anything like SciPy in Ruby?
Looking further into the differences between Python and Ruby, is there a Ruby equivalent to SciPy, or what other scientific math gems are available for Ruby?

