Numpy Articles - Page 55 of 81

numpy.triu Method in Python

Syed Abeed
Updated on 11-Feb-2022 06:38:25

546 Views

The numpy.triu() method can be used to get the upper triangle of an array. Its syntax is as follows −Syntaxnumpy.triu(m, k=0)where, m - number of rows in the array.k - It is the diagonal. Use k=0 for the main diagonal. k < 0 is below the main diagonal and k > 0 is above it.It returns a copy of the array after replacing all the elements above the kth diagonal with zero.Example 1Let us consider the following example −# import numpy library import numpy as np # create an input matrix x = np.matrix([[6, 7], [8, 9], [10, 11]]) ... Read More

numpy.tril Method in Python

Syed Abeed
Updated on 11-Feb-2022 06:29:46

326 Views

We can use the numpy.tril() method to get the lower triangle of an array. Its syntax is as followsSyntaxnumpy.tril(m, k=0)where, m - number of rows in the array.k - It is the diagonal. Use k=0 for the main diagonal. k < 0 is below the main diagonal and k > 0 is above it.It returns a copy of the array after replacing all the elements above the k thdiagonal with zero.Example 1Let us consider the following example −# import numpy library import numpy as np # create an input matrix x = np.matrix([[20, 21, 22], [44 ,45, 46], [78, ... Read More

numpy.tri Method in Python

Syed Abeed
Updated on 11-Feb-2022 05:59:23

362 Views

The numpy.tri method can be used to get an array of 1's at and below a given diagonal and 0's elsewhere.Syntaxnumpy.tri(N, M=None, k=0, dtype=)Parametersnumpy.tri accepts the following parameters −N - It defines the number of the rows in an array.M - It defines the number of columns in an array. By default, it is None.k - Use k = 0, for the main diagonal, while k < 0 is below it and k > 0 is above it.dtype - It is data type of the returned array. By default, it is float.Example 1Let us consider the following example −# import ... Read More

Return evenly spaced values within a given interval in Numpy

AmitDiwan
Updated on 10-Feb-2022 09:59:19

286 Views

Create an array with int elements using the numpy.arange() method. The 1st parameter is the "start" i.e. the start of the interval. The 2nd parameter is the "end" i.e. the end of the interval. The 3rd parameter is the spacing between values. The default step size is 1.Values are generated within the half-open interval [start, stop). For integer arguments the function is equivalent to the Python built-in range function, but returns an ndarray rather than a list.The stop is the end of interval. The interval does not include this value, except in some cases where step is not an integer ... Read More

Create a record array from binary data in Numpy

AmitDiwan
Updated on 10-Feb-2022 09:56:40

593 Views

To create a record array from binary data, use the numpy.core.records.fromstring() method in Python Numpy. We have used the tobytes() method for binary data.The first parameter is the datastring i.e. the buffer of binary data. The function returns the record array view into the data in datastring. This will be readonly if datastring is readonly. The offset parameter is the position in the buffer to start reading from. The formats, names, titles, aligned, byteorder parameters, if dtype is None, these arguments are passed to numpy.format_parser to construct a dtype.StepsAt first, import the required library −import numpy as npSet the array type ... Read More

Create a recarray from a list of records in text form in Numpy

AmitDiwan
Updated on 10-Feb-2022 09:50:28

164 Views

To create a recarray from a list of records in text form, use the numpy.core.records.fromrecords() method in Python Numpy. The names is set using the "names" parameter. The field names, either specified as a comma-separated string in the form 'col1, col2, col3', or as a list or tuple of strings in the form ['col1', 'col2', 'col3']. An empty list can be used, in that case default field names (‘f0’, ‘f1’, …) are used.The first parameter is the data in the same field may be heterogeneous - they will be promoted to the highest data type. The dtype is the valid ... Read More

Return a new array of given shape filled with a fill value and a different output type in Numpy

AmitDiwan
Updated on 10-Feb-2022 07:39:39

2K+ Views

To return a new array of given shape and type, filled with a fill value, use the numpy.full() method in Python Numpy. The 1st parameter is the shape of the new array. The 2nd parameter sets the fill value. The 3rd parameter is used to set the desired data-type of the returned output array.The dtype is the desired data-type for the array. The order suggests whether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory.NumPy offers comprehensive mathematical functions, random number generators, linear algebra routines, Fourier transforms, and more. It supports a wide range of ... Read More

Return a new array of given shape and type, filled with array-like in Numpy

AmitDiwan
Updated on 10-Feb-2022 07:24:33

224 Views

To return a new array of given shape and type, filled with a fill value, use the numpy.full() method in Python Numpy. The 1st parameter is the shape of the new array. The 2nd parameter sets the fill value as array-like.The dtype is the desired data-type for the array. The order suggests whether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory.NumPy offers comprehensive mathematical functions, random number generators, linear algebra routines, Fourier transforms, and more. It supports a wide range of hardware and computing platforms, and plays well with distributed, GPU, and sparse array ... Read More

Return a new array of given shape and type filled with a fill value in Numpy

AmitDiwan
Updated on 10-Feb-2022 07:21:59

579 Views

To return a new array of given shape and type, filled with a fill value, use the numpy.full() method in Python Numpy. The 1st parameter is the shape of the new array. The 2nd parameter sets the fill value.The dtype is the desired data-type for the array. The order suggests whether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory.NumPy offers comprehensive mathematical functions, random number generators, linear algebra routines, Fourier transforms, and more. It supports a wide range of hardware and computing platforms, and plays well with distributed, GPU, and sparse array libraries.StepsAt first, ... Read More

Return an array of zeros with the same shape and type as a given array in Numpy

AmitDiwan
Updated on 10-Feb-2022 07:14:51

3K+ Views

To return an array of zeros with the same shape and type as a given array, use the numpy.zeroes_like() method in Python Numpy. The 1st parameter here is the shape and data-type of array-like that define these same attributes of the returned array.The dtype overrides the data type of the result. The order parameter overrides the memory layout of the result. ‘C’ means C-order, ‘F’ means F-order, ‘A’ means ‘F’ if a is Fortran contiguous, ‘C’ otherwise. ‘K’ means match the layout of a as closely as possible. The subok parameter, if True, then the newly created array will use ... Read More

Advertisements