Tagged Questions
0
votes
2answers
45 views
Solving for x values of polynomial with known y in scipy / numpy
I am trying to solve for the x values with a known y. I was able to get the polynomial to fit my data, and now I want to know the x value that a chosen y would land on the curve.
import numpy as np
...
5
votes
3answers
115 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
181 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.
...
4
votes
3answers
109 views
Get smallest N values from numpy array ignoring inf and nan
I need a good, quick method for finding the 10 smallest real values from a numpy array that could have arbitrarily many nan and/or inf values.
I need to identify the indices of these smallest real ...
3
votes
4answers
114 views
Why do “Not a Number” values equal True when cast as boolean in Python/Numpy?
When casting a NumPy Not-a-Number value as a boolean, it becomes True, e.g. as follows.
>>> import numpy as np
>>> bool(np.nan)
True
This is the exact opposite to what I would ...
1
vote
1answer
60 views
My numpy array always ends in zero?
I think I missed something somewhere. I filled a numpy array using two for loops (x and y) and a function based on the x,y position. The only problem is that the value of the array always ends in ...
4
votes
2answers
331 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 ...
8
votes
3answers
527 views
How to set up and solve simultaneous equations in python
For a fixed integer n, I have a set of 2(n-1) simultaneous equations as follows.
M(p) = 1+((n-p-1)/n)*M(n-1) + (2/n)*N(p-1) + ((p-1)/n)*M(p-1)
N(p) = 1+((n-p-1)/n)*M(n-1) + (p/n)*N(p-1)
M(1) = ...
1
vote
1answer
85 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
513 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:
...
9
votes
1answer
278 views
Parseval's theorem in Python
I'm trying to get some grip on Python's 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, ...
1
vote
1answer
295 views
Image rotation and scaling the frequency domain?
I'm writing some code to recover the rotation, scaling and translation of a test image relative to a template using phase correlation, a la Reddy & Chatterji 1996. I take the FFT of my original ...
1
vote
2answers
93 views
How to find the y-intercept using sympy?
x = Symbol('x')
f = x**2-3
def return_y_intercept(f):
return [the y-intercepts]
How is it possible using something like the structure above write a function that returns the y-intercepts of it's ...
3
votes
1answer
666 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
125 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
145 views
How can I solve an equation like 'x^3/3x == 4' using Scipy? [closed]
or another Open Source Python Library: Numpy, Matplotlib ...
1
vote
2answers
170 views
Calculating Area Under Individual Peaks in Python After FFT
I've generated a graph of a FFT, with a number of individual peaks, in Python 2.7.3.
I understand that to calculate the area under the whole graph, I can either sum the values or use trapz, but ...
4
votes
1answer
1k views
weighted moving average with numpy.convolve
I'm writing a moving average function that uses the convolve function in numpy, which should be equivalent to a (weighted moving average). When my weights are all equal (as in a simple arithmatic ...
5
votes
3answers
247 views
Non distinct prime factors of larger numbers
I wrote and use this function to produce prime factors of a number:
import numpy as np
from math import sqrt
def primesfrom3to(n):
""" Returns a array of primes, p < n """
assert n>=2
...
1
vote
0answers
178 views
(Slightly-) Linear Programming
I have a linear subspace S = [v1 v2 v3 v4] = [1 1 1 2]t where t is some scalar real number.
I want to do a transformation on S based on the following: [v1 v2 v3 v4] = [A 2A*B 3*C 10]
What is the ...
0
votes
1answer
104 views
How can I generate an arc in numpy?
If I know the center(x,y,z) of the arc and the diameter, and the starting and ending point, how can I generate the values between the start and the end?
10
votes
3answers
397 views
finding the area of a closed 2d uniform cubic B-spline
I have a list of 2d points which are the control vertices (Dx) for a closed uniform cubic B-spline. I am assuming a simple curve (non-self-intersecting, all control points are distinct).
I am trying ...
1
vote
2answers
144 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 > ...
0
votes
2answers
181 views
How to express as Matrix operations?
I have a matrix A:
1 3 1
7 5 2
4 3 7
8 2 1
3 9 6
4 5 2
and a matrix B:
2 9 1
4 3 8
9 7 3
4 4 2
6 5 7
2 9 2
I want to compute C:
1*2+3*9+1*1
7*4+5*3+2*8
4*9+3*7+7*3
8*4+2*4+1*2
3*6+9*5+6*7
...
0
votes
2answers
172 views
Python, numpy : 3 dimensions broadcast
I am a newby in broadcasting with numpy. I define three numpy arrays as follows:
from numpy import *
a=array([10,20]).reshape(2,1)
b=array([100,200,300]).reshape(1,3)
c=arange(1,11).reshape(1,1,10)
...
2
votes
2answers
763 views
Python and numpy : subtracting line by line a 2-dim array from a 1-dim array
In python, I wish to subtract line by line a 2-dim array from a 1-dim array.
I know how to do it with a 'for' loop and indexes but I suppose it may be quicker to use numpy functions. However I did ...
6
votes
2answers
653 views
Generate “random” matrix of certain rank over a fixed set of elements
I'd like to generate matrices of size mxn and rank r, with elements coming from a specified finite set, e.g. {0,1} or {1,2,3,4,5}. I want them to be "random" in some very loose sense of that word, ...
1
vote
2answers
467 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, ...
4
votes
6answers
11k views
How do i compute derivative using Numpy?
Sorry for this simple question.
How do i calculate simple derivative for function y=x^2+1 using Numpy?
UPDATE: let's say, i want the value of derivative at x=5
17
votes
2answers
654 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 ...
0
votes
2answers
1k views
Logarithm of an array in Python
from numpy import *
from pylab import plot,show
q=10
time = range(q)
mlist=empty(q)
nlist=empty(q)
m=.9
n=(m+(1e-6))
b=3
for t in range(q):
mlist[t]=m
nlist[t]=n
m=(b*(1-m)*m)
...
3
votes
2answers
626 views
Good algorithm for computing volume or surface area in python
I am trying to compute the volume (or surface area) of a 3D numpy array. The voxels are anisotropic in a lot of cases, and I have the pixel to cm conversion factor in each direction.
Does anyone ...
2
votes
1answer
219 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 ...
1
vote
3answers
376 views
Python 32/64-bit machine float summing of transposed matrix not correct?
First off, I'm not a math guy, so large number precision rarely filters into my daily work. Please be gentle. ;)
Using NumPy to generate a matrix with values equally divided from 1:
>>> m = ...
1
vote
1answer
891 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 ...
4
votes
5answers
413 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
1answer
653 views
How to manage a 2D Fourier Transform(FFT) on a 3D numpy masked array?
I am having problems with doing 2D Fast Fourier Transforms on a 3D array. They are of a mathematical nature and of an 'understanding python/numpy' nature.
EDIT: For clarification, the core questions ...
3
votes
5answers
3k views
numpy arbitrary precision linear algebra
I have a numpy 2d array [medium/large sized - say 500x500]. I want to find the eigenvalues of the element-wise exponent of it. The problem is that some of the values are quite negative (-800,-1000, ...
3
votes
1answer
218 views
How to get __radd__ to work with numpy arrays
Consider the following python code:
class MyClass:
def __radd__(self, a):
print "foo", a
return a
p = MyClass()
To evoke radd the following can be run:
>>> print "bar"+p
...
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 ...
3
votes
4answers
499 views
Python/Numpy What's it called / how do you represent that operation where you multiply each element of two vectors?
For example, suppose I have:
x = array([1, 2, 3])
y = array([4, 5, 6])
Standard "array multiplication" in python does z = x * y = array([4, 10, 18]). In matlab, to get the same effect, you do *. ...
2
votes
3answers
755 views
Runge-Kutta. Solving initial value problem that isn't easily seperated
We are supposed to write a program to solve the following initial value problem numerically using 4th order Runge-Kutta. That algorithm isn't a problem and I can post my solution when I finish.
The ...
1
vote
3answers
728 views
Numpy conditional arithmetic operations on two arrays
Still trying to earn my numpy stripes: I want to perform an arithmetic operation on two numpy arrays, which is simple enough:
return 0.5 * np.sum(((array1 - array2) ** 2) / (array1 + array2))
...
-1
votes
5answers
937 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 ...
3
votes
4answers
2k views
Numpy.eig and the percentage of variance in PCA
Picking up from where we left...
So I can use linalg.eig or linalg.svd to compute the PCA. Each one returns different Principal Components/Eigenvectors and Eigenvalues when they're fed the same data ...
3
votes
3answers
494 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 ...
0
votes
2answers
851 views
How do I standardize a matrix?
Basically, take a matrix and change it so that its mean is equal to 0 and variance is 1. I'm using numpy's arrays so if it can already do it it's better, but I can implement it myself as long as I can ...
8
votes
3answers
1k views
how to draw a heart with pylab
How to draw a heart with pylab? I searched with google for ways to draw the picture but i want know how to draw it with pylab. Can someone help? The picture should look like this:
2
votes
1answer
970 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
270 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


