L_DIAG
=L_DIAG(array)
Argument | Description | Example |
---|---|---|
array | Either a vector or a square array | {1,2;2,3} |
In the template file, navigate to the Matrices worksheet to see the L_DIAG function in action.
Description
The L_DIAG function is used to convert a vector to a Diagonal matrix, or vice versa. A square Diagonal matrix is a matrix where all of the off-diagonal elements are zero.
If array is a column vector, the function returns a square diagonal matrix D with the vector making up the elements along the diagonal.
If array is a square matrix, the function returns a vector with elements from the diagonal of the array.
If array is not a column vector and not square, the function returns "Error: Not Square".
Multiplying by a Diagonal Matrix Scales
Multiplying an nxm array by an mxm Diagonal matrix will scale each of the columns of the original array by the corresponding diagonal elements. For example, if you multiply the L_ONES(3,3) matrix by L_DIAG({1;2;3}), you will end up with {1,2,3;1,2,3;1,2,3}. The first column is scaled by 1; the second column by 2; the third by 3.
=MMULT(L_ONES(3,3),L_DIAG({1;2;3})) ={1,2,3;1,2,3;1,2,3}
TRACE of a Matrix
The TRACE of a matrix is the sum of the diagonal elements, so...
L_TRACE(matrix) = SUM(L_DIAG(matrix))
Lambda Formula
This code for using L_DIAG in Excel is provided under the License as part of the LAMBDA Library, but to use just this function, you may copy the following code directly into your spreadsheet.
Code to Create Function via the Name Manager
Name: L_DIAG Comment: Return the Diagonal matrix or vector for a given array Refers To: =LAMBDA(array, LET(doc,"https://www.vertex42.com/lambda/diag.html", r, ROWS(array), c, COLUMNS(array), IF(c=1, MAKEARRAY(r,r,LAMBDA(i,j,IF(i=j,INDEX(array,i),0))), IF(r <> c, "Error: Not Square", MAKEARRAY(r,1,LAMBDA(i,j,INDEX(array,i,i))) ) ) ))
Code for AFE Workbook Module (Excel Labs Add-in)
/** * Convert a vector to a Diagonal matrix or vice versa */ L_DIAG = LAMBDA(array, LET(doc,"https://www.vertex42.com/lambda/diag.html", r, ROWS(array), c, COLUMNS(array), IF(c=1, MAKEARRAY(r,r,LAMBDA(i,j,IF(i=j,INDEX(array,i),0))), IF(r <> c, "Error: Not Square", MAKEARRAY(r,1,LAMBDA(i,j,INDEX(array,i,i))) ) ) ));
Named Function for Google Sheets
Name: L_DIAG Description: Return the Diagonal matrix or vector for a given array Arguments: array Function: LET(doc,"https://www.vertex42.com/lambda/diag.html", r, ROWS(array), c, COLUMNS(array), IF(c=1, MAKEARRAY(r,r,LAMBDA(i,j,IF(i=j,INDEX(array,i),0))), IF(r <> c, "Error: Not Square", MAKEARRAY(r,1,LAMBDA(i,j,INDEX(array,i,i))) ) ) )
L_DIAG Examples
Test: Copy and Paste this LET function into a cell =LET( vector, {1;2;3;4}, L_DIAG(vector) ) Result: {1,0,0,0;0,2,0,0;0,0,3,0;0,0,0,4}
Test: Copy and Paste this LET function into a cell =LET( matrix, {1,0,0,0;0,2,0,0;0,0,3,0;0,0,0,4}, L_DIAG(matrix) ) Result: {1;2;3;4}
Test: Copy and Paste this LET function into a cell =LET( matrix, {"A",1,2;1,"B",2;1,2,"C"}, L_DIAG(matrix) ) Result: {"A";"B";"C"}
Test: Copy and Paste this LET function into a cell =LET( matrix, {"A",1,2;1,"B",2;1,2,"C"}, L_DIAG(L_DIAG(matrix)) ) Result: {"A",0,0;0,"B",0;0,0,"C"},