spectrochempy.diag
- diag(dataset, offset=0, **kwargs)[source]
- Extract a diagonal or construct a diagonal array. - See the more detailed documentation for - numpy.diagonalif you use this function to extract a diagonal and wish to write to the resulting array; whether it returns a copy or a view depends on what version of numpy you are using.- Parameters:
- dataset (array_like) – If - datasetis a 2-D array, return a copy of its- k-th diagonal. If- datasetis a 1-D array, return a 2-D array with- von the- k-th. diagonal.
- offset (int, optional) – Diagonal in question. The default is 0. Use offset>0 for diagonals above the main diagonal, and offset<0 for diagonals below the main diagonal. 
 
- Returns:
- diag – The extracted diagonal or constructed diagonal array.