This is documentation for an old release of NumPy (version 1.7.0). Read this page in the documentation of the latest stable release (version > 1.17).
Returns the square identity matrix of given size.
Parameters : | n : int
dtype : data-type, optional
|
---|---|
Returns : | out : matrix
|
See also
Examples
>>> import numpy.matlib
>>> np.matlib.identity(3, dtype=int)
matrix([[1, 0, 0],
[0, 1, 0],
[0, 0, 1]])