-1
votes
2answers
60 views

python: check if list is multidimensional or one dimensional

I am currently programing in python and I created a method that inputs list from the user, without knowing whether he is multidimensional or one dimensional. how do I check? sample: def ...
0
votes
2answers
81 views

python multimdimensional sorting, combined values

I have a multidimensional list where I would like to sort on a combined weighting of two numeric elements, example, of results using: sorted(results, key=operator.itemgetter(2,3)) [..,1,34] ... ... ...
0
votes
2answers
357 views

Numpy: How to scale an integer array by an integer value?

I have a numpy array with maximum value num. I would like to scale all the values in the array by newMaxValue/num so that the new maximum value of array is newMaxValue. I tried to convert the array to ...
0
votes
3answers
153 views

Reading and sorting a 1D text file to a multidimensional array in python

I am attempting to read in a large data file and convert it to a format that my other scripts can better handle. Each datafile has a series of headers followed by two columns referring the relevant ...
6
votes
2answers
183 views

Determinant of Multidimensional array

I´m trying to compute the determinant of a numpy array M, with np.shape(M) = (N, L, L) is something like: import numpy as np M = np.random.rand(1000*10*10).reshape(1000, 10, 10) dm = np.zeros(1000) ...
1
vote
1answer
73 views

Query Filter for value from multidimensional dictionary?

I'm new to Python/Django and i have a question. I need to get a QuerySet filtered by a Value from a multidimensional dictionary (JSONField). So far, I got this: def make_cond(name, value): from ...
0
votes
1answer
209 views

scipy.interpolate.LinearNDInterpolator not producing desired functionality

I am not getting the desired 2D linear interpolation functionality with LinearNDInterpolator. The following piece of code is trying to do an interpolation between the 4 knot points (0,0), (1,0), ...
1
vote
2answers
127 views

How to view all elements of a Python Dictionary for Just One Value of one of the Elements in a Tuple Key

For a Python Dictionary with a tuple key, how can only the part of the dictionary with one of the tuple elements set to a single value be displayed. Then also looking to delete those elements. For ...
10
votes
3answers
354 views

Python: Iterating lists with different amount of dimensions, is there a generic way?

# 2x3 dimensional list multidim_list = [ [1,2,3], [4,5,6], ] # 2x3x2 dimensional list multidim_list2 = [ [ ...
-1
votes
3answers
237 views

Changing 2 dimensional list to a 1 dimensional [duplicate]

Possible Duplicate: Flattening a shallow list in Python I want to create a function that takes a 2 dimensional list and outputs a 1 dimensional list with the same contents. Here is what I ...
2
votes
4answers
560 views

Merging a list of lists such that unique values overwrite nonunique ones?

After searching around for quite a while and trying to come up with a solution on my own with list comprehensions, I feel like I've been completely stumped on how to solve the following problem: ...
4
votes
2answers
78 views

What would be the most efficient/clean way to deeply sort a multidimensional list in Python?

Example: From this list: list = [[10, 9, 1], [2, 1, 1,], [4, 11, 16]] I'd like to have: print list [[1, 1, 1], [2, 4, 9], [10, 11, 16]] Is it possible with the list.sort() function or do I ...
2
votes
4answers
634 views

copy list in python

As I am trying to make a copy of a list and do some stuff with the copy of the list. Somehow my original list is modified as well. I already looked at different memory allocatinos and different ways ...
2
votes
1answer
242 views

Intersection of infinite volumes of any dimension

I need code/text/google keywords/other resources to implement this class. Speed doesn't matter. It should just work for any number of dimensions. class InfiniteVolume: # such as a point, line, plane, ...
1
vote
2answers
58 views

appending a list to a list to make a list of lists causes a problem when wanting to change a value by using the list of lists's index: python

Basically there seems to be a problem when a list of lists is made by appending a list to another list using list.append(). The problem is that the entire column is changed to the value you set it to ...
0
votes
1answer
1k views

Python: Find item in multidimensional list

I have a list of lists, a snippet of which is below: x_attrib = [] self.x_attrib.append(["Is_virtual", False, 'virtual', 'flag']) self.x_attrib.append(["X_pos", None, 'pos/x', 'attrib']) ...
2
votes
1answer
443 views

numpy: operating on multidimensional arrays

Sorry for title's vagueness. I have two related questions. First, let's say I have a function "hessian" that given two parameters (x, y) returns a matrix. I now want to compute that matrix for (x,y) ...
3
votes
3answers
592 views

Storing and reloading large multidimensional data sets in Python

I'm going to be running a large number of simulations producing a large amount of data that needs to be stored and accessed again later. Output data from my simulation program is written to text files ...
2
votes
5answers
2k views

KeyError while building multidimensional dictionary in Python

I am trying to build a dictionary with two keys but am getting a KeyError when assigning items. I don't get the error when using each of the keys separately, and the syntax seems pretty ...
1
vote
3answers
190 views

Visualize high dimensional field arrows?

I have a big list of tuples (a, b), where both a and b are 9-dimensional vectors from the same space. This essentially encodes states of a system and some transitions. I would like to visualize the ...
1
vote
3answers
975 views

Python / Django : emulating a multidimensional layer on a MySQL database

I'm working on a Django project where I need to provide a lot of different visualizations on the same data (for example average of a value for each month, for each year / for a location, etc...). I ...
5
votes
2answers
2k views

2D integrals in SciPy

I am trying to integrate a multivariable function in SciPy over a 2D area. What would be the equivalent of the following Mathematica code? In[1]:= F[x_, y_] := Cos[x] + Cos[y] In[2]:= ...