0
votes
2answers
44 views
How to solve homogeneous linear equations with NumPy?
If I have homogeneous linear equations like this
array([[-0.75, 0.25, 0.25, 0.25],
[ 1. , -1. , 0. , 0. ],
[ 1. , 0. , -1. , 0. ],
[ 1. , 0. , 0. , -1. ]])
…
1
vote
3answers
120 views
How much of NumPy and SciPy is in C?
Python newbie here.
Are parts of NumPy and/or SciPy programmed in C/C++?
And how does the overhead of calling C from Python compare to the overhead of calling C from Java and/or C#?
I'm just …
0
votes
4answers
71 views
make operations excluding the diagonal of an array
as I can perform operations on arrays so that does nothing on the diagonal
is calculated such that all but the diagonal
array ([[0., 1.37, 1., 1.37, 1., 1.37, 1.]
[1.37, 0. , 1.37, 1.73, …
0
votes
5answers
194 views
shortest path algorithm [closed]
where you can get the shortest path algorithms for python?
Try it accumulate is calculating all short paths of network in a matrix or array
0
votes
3answers
64 views
pythonic way to aggregate arrays (numpy or not)
Hi,
I would like to make a nice function to aggregate data among an array (it's a numpy record array, but it does not change anything)
you have an array of data that you want to aggregate among one …
1
vote
3answers
54 views
Numpy meshgrid in 3D
Numpy's meshgrid is very useful for converting two vectors to a coordinate grid. What is the easiest way to extend this to three dimensions? So given three vectors x, y, and z, construct 3x3D arrays …
0
votes
2answers
50 views
Simple question about numpy matrix in python
Let's suppose I have a numpy matrix variable called MATRIX with 3 coordinates: (x, y, z).
Is acessing the matrix's value through the following code
myVar = MATRIX[0,0,0]
equal to
myVar = …
0
votes
2answers
25 views
How do I make set_printoptions(suppress=True) permanent?
In numpy there is a function that makes arrays print prettier.
set_printoptions(suppress = True)
In other words, instead of this:
array([[ 0.00000000e+00, -3.55271368e-16, 0.00000000e+00,
…
0
votes
2answers
68 views
Speeding up computations with numpy matrices
I have two matrices. Both are filled with zeros and ones. One is a big one (3000 x 2000 elements), and the other is smaller ( 20 x 20 ) elements. I am doing something like:
newMatrix = (size of …
0
votes
1answer
65 views
replace values in an array
hello all, as a replacement value for another within an operation with arrays, or how to search within an array and replace a value by another
for example:
array ([[NaN, 1., 1., 1., 1., 1., 1.]
…
0
votes
2answers
46 views
Numpy - show decimal values in array results
hello, how do I calculate that an array of python numpy or me of all the calculate decimals and not skip like.
>> A = numpy.array ([[1,2,3], [4,5,6], [7,8,9]]).
>> C = numpy.array …
0
votes
1answer
29 views
Stacking numpy recarrays without losing their recarrayness
Suppose I make two recarrays with the same dtype and stack them:
>>> import numpy as np
>>> dt = [('foo', int), ('bar', float)]
>>> a = np.empty(2, …
2
votes
3answers
96 views
Strange numpy.float96 behaviour
What am I missing:
In [66]: import numpy as np
In [67]: np.float(7.0 / 8)
Out[67]: 0.875 #OK
In [68]: np.float32(7.0 / 8)
Out[68]: 0.875 #OK
In [69]: np.float96(7.0 / 8)
Out[69]: …
4
votes
3answers
356 views
Interpolation in SciPy: Finding X that produces Y
Is there a better way to find which X gives me the Y I am looking for in SciPy? I just began using SciPy and I am not too familiar with each function.
import numpy as np
import matplotlib.pyplot as …
0
votes
2answers
81 views
import array in python
hi all, how can I import an array to python (numpy)
from a file and that way the file must be written.
For example, a matrix
to and from that file type (extention).
thanks for any response
