Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 677c577

Browse files
committedOct 4, 2021
Change to more specific documentation URLs
1 parent 1915bbb commit 677c577

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎src/stdlib_linalg.fypp

+7-7
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ module stdlib_linalg
9494
!! version: experimental
9595
!!
9696
!! Checks if a matrix (rank-2 array) is square
97-
!! ([Specification](../page/specs/stdlib_linalg.html#description_4))
97+
!! ([Specification](../page/specs/stdlib_linalg.html#is_square))
9898
#:for k1, t1 in RCI_KINDS_TYPES
9999
module procedure is_square_${t1[0]}$${k1}$
100100
#:endfor
@@ -106,7 +106,7 @@ module stdlib_linalg
106106
!! version: experimental
107107
!!
108108
!! Checks if a matrix (rank-2 array) is diagonal
109-
!! ([Specification](../page/specs/stdlib_linalg.html#description_5))
109+
!! ([Specification](../page/specs/stdlib_linalg.html#is_diagonal))
110110
#:for k1, t1 in RCI_KINDS_TYPES
111111
module procedure is_diagonal_${t1[0]}$${k1}$
112112
#:endfor
@@ -118,7 +118,7 @@ module stdlib_linalg
118118
!! version: experimental
119119
!!
120120
!! Checks if a matrix (rank-2 array) is symmetric
121-
!! ([Specification](../page/specs/stdlib_linalg.html#description_6))
121+
!! ([Specification](../page/specs/stdlib_linalg.html#is_symmetric))
122122
#:for k1, t1 in RCI_KINDS_TYPES
123123
module procedure is_symmetric_${t1[0]}$${k1}$
124124
#:endfor
@@ -130,7 +130,7 @@ module stdlib_linalg
130130
!! version: experimental
131131
!!
132132
!! Checks if a matrix (rank-2 array) is skew-symmetric
133-
!! ([Specification](../page/specs/stdlib_linalg.html#description_7))
133+
!! ([Specification](../page/specs/stdlib_linalg.html#is_skew_symmetric))
134134
#:for k1, t1 in RCI_KINDS_TYPES
135135
module procedure is_skew_symmetric_${t1[0]}$${k1}$
136136
#:endfor
@@ -142,7 +142,7 @@ module stdlib_linalg
142142
!! version: experimental
143143
!!
144144
!! Checks if a matrix (rank-2 array) is Hermitian
145-
!! ([Specification](../page/specs/stdlib_linalg.html#description_8))
145+
!! ([Specification](../page/specs/stdlib_linalg.html#is_hermitian))
146146
#:for k1, t1 in RCI_KINDS_TYPES
147147
module procedure is_hermitian_${t1[0]}$${k1}$
148148
#:endfor
@@ -154,7 +154,7 @@ module stdlib_linalg
154154
!! version: experimental
155155
!!
156156
!! Checks if a matrix (rank-2 array) is triangular
157-
!! ([Specification](../page/specs/stdlib_linalg.html#description_9))
157+
!! ([Specification](../page/specs/stdlib_linalg.html#is_triangular))
158158
#:for k1, t1 in RCI_KINDS_TYPES
159159
module procedure is_triangular_${t1[0]}$${k1}$
160160
#:endfor
@@ -166,7 +166,7 @@ module stdlib_linalg
166166
!! version: experimental
167167
!!
168168
!! Checks if a matrix (rank-2 array) is Hessenberg
169-
!! ([Specification](../page/specs/stdlib_linalg.html#description_10))
169+
!! ([Specification](../page/specs/stdlib_linalg.html#is_hessenberg))
170170
#:for k1, t1 in RCI_KINDS_TYPES
171171
module procedure is_Hessenberg_${t1[0]}$${k1}$
172172
#:endfor

0 commit comments

Comments
 (0)
Please sign in to comment.