You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/specs/stdlib_linalg.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -227,7 +227,7 @@ Checks if a matrix is square
227
227
228
228
### Return value
229
229
230
-
Returns a logical value that is true if the input matrix is square, and false otherwise.
230
+
Returns a `logical` scalar that is `.true.` if the input matrix is square, and `.false.` otherwise.
231
231
232
232
### Example
233
233
@@ -264,7 +264,7 @@ Checks if a matrix is diagonal
264
264
265
265
### Return value
266
266
267
-
Returns a logical value that is true if the input matrix is diagonal, and false otherwise.
267
+
Returns a `logical` scalar that is `.true.` if the input matrix is diagonal, and `.false.` otherwise.
268
268
Note that nonsquare matrices may be diagonal, so long as `a_ij = 0` when `i /= j`.
269
269
270
270
### Example
@@ -302,7 +302,7 @@ Checks if a matrix is symmetric
302
302
303
303
### Return value
304
304
305
-
Returns a logical value that is true if the input matrix is symmetric, and false otherwise.
305
+
Returns a `logical` scalar that is `.true.` if the input matrix is symmetric, and `.false.` otherwise.
306
306
307
307
### Example
308
308
@@ -339,7 +339,7 @@ Checks if a matrix is skew-symmetric
339
339
340
340
### Return value
341
341
342
-
Returns a logical value that is true if the input matrix is skew-symmetric, and false otherwise.
342
+
Returns a `logical` scalar that is `.true.` if the input matrix is skew-symmetric, and `.false.` otherwise.
343
343
344
344
### Example
345
345
@@ -376,7 +376,7 @@ Checks if a matrix is Hermitian
376
376
377
377
### Return value
378
378
379
-
Returns a logical value that is true if the input matrix is Hermitian, and false otherwise.
379
+
Returns a `logical` scalar that is `.true.` if the input matrix is Hermitian, and `.false.` otherwise.
380
380
381
381
### Example
382
382
@@ -415,8 +415,8 @@ Checks if a matrix is triangular
415
415
416
416
### Return value
417
417
418
-
Returns a logical value that is true if the input matrix is the type of triangular specified by `uplo` (upper or lower), and false otherwise.
419
-
Note that the definition of triangular used here allows nonsquare matrices to be triangular.
418
+
Returns a `logical` scalar that is `.true.` if the input matrix is the type of triangular specified by `uplo` (upper or lower), and `.false.` otherwise.
419
+
Note that the definition of triangular used in this implementation allows nonsquare matrices to be triangular.
420
420
Specifically, upper triangular matrices satisfy `a_ij = 0` when `j < i`, and lower triangular matrices satisfy `a_ij = 0` when `j > i`.
421
421
422
422
### Example
@@ -456,8 +456,8 @@ Checks if a matrix is Hessenberg
456
456
457
457
### Return value
458
458
459
-
Returns a logical value that is true if the input matrix is the type of Hessenberg specified by `uplo` (upper or lower), and false otherwise.
460
-
Note that the definition of Hessenberg used here allows nonsquare matrices to be Hessenberg.
459
+
Returns a `logical` scalar that is `.true.` if the input matrix is the type of Hessenberg specified by `uplo` (upper or lower), and `.false.` otherwise.
460
+
Note that the definition of Hessenberg used in this implementation allows nonsquare matrices to be Hessenberg.
461
461
Specifically, upper Hessenberg matrices satisfy `a_ij = 0` when `j < i-1`, and lower Hessenberg matrices satisfy `a_ij = 0` when `j > i+1`.
0 commit comments