mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
15 lines
355 B
Python
15 lines
355 B
Python
class ndarray(object):
|
|
def diagonal(self, offset=0, axis1=0, axis2=1):
|
|
"""
|
|
a.diagonal(offset=0, axis1=0, axis2=1)
|
|
|
|
Return specified diagonals.
|
|
|
|
Refer to `numpy.diagonal` for full documentation.
|
|
|
|
See Also
|
|
--------
|
|
numpy.diagonal : equivalent function
|
|
"""
|
|
pass
|