Skip to content

Tag: matrix

Combination of rows in numpy.ndarray

I have the following numpy.ndarray I want to find all the possible combinations of sum of each row (sum of individual elements of a row except the last column) of S[0,:,:] with each row of S[1,:,:], i.e., my desired result is (order does not matter): which is a 9-by-2 array resulting from 9 possible combinati…

Create a matrix with np.random.normal

I need to create an nxn matrix in which the numbers in the cells are distributed following a Gaussian distribution. This code may not go well because it fills a cell with a sequence. how can I do? Answer Edited for border of zeros np.random.normal takes a size keyword argument. You can use it like this:

Delete values over the diagonal in a matrix with python

I have the next problem with a matrix in python and numpy given this matrix i want to obtain this: I was trying with np.diag() but doesnt works Thanks! Answer Use np.tril(a) to extract the lower triangular matrix. Refer this : https://docs.scipy.org/doc/numpy/reference/generated/numpy.tril.html

supposedly incorrect output np.reshape function

I have an array called “foto_dct” with shape (16,16,8,8) which means 16×16 matrices of 8×8. When I print foto_dct[0,15], being the last matrix of the first row I get: when i do foto_dct_big = np.reshape(foto_dct,(128,128)) and print foto_dct_big I get this: As you can see is the top righ…