numpy.mgrid function with example program in python

Spread the love

numpy.mgrid function(): This funtion returns  mesh-grid `ndarrays` all of the same dimensions

numpy.mgrid = <numpy.lib.index_tricks.MGridClass object>¶
nd_grid instance which returns a dense multi-dimensional “meshgrid”.

An instance of numpy.lib.index_tricks.nd_grid which returns an dense (or fleshed out) mesh-grid when indexed, so that each returned argument has the same shape. The dimensions and number of the output arrays are equal to the number of indexing dimensions. If the step length is not a complex number, then the stop is not inclusive.

However, if the step length is a complex number (e.g. 5j), then the integer part of its magnitude is interpreted as specifying the number of points to create between the start and stop values, where the stop value is inclusive.

Returns:
mesh-grid `ndarrays` all of the same dimensions

#numpy.mgrid function with example program in python

import numpy as np print(np.mgrid[0:3,0:3]) print(np.mgrid[0:4,0:4]) print(np.mgrid[-1:0:5j])

Output:

[[[0 0 0]
  [1 1 1]
  [2 2 2]]

 [[0 1 2]
  [0 1 2]
  [0 1 2]]]
[[[0 0 0 0]
  [1 1 1 1]
  [2 2 2 2]
  [3 3 3 3]]

 [[0 1 2 3]
  [0 1 2 3]
  [0 1 2 3]
  [0 1 2 3]]]
[-1.   -0.75 -0.5  -0.25  0.  ]

 

admin

admin

Leave a Reply

Your email address will not be published. Required fields are marked *