33``` {r results='asis', echo=FALSE}
44if (knitr::is_html_output()) {
55cat(' * <a href="array-reductions.html">Reductions</a>\n')
6- cat(' * <a href="array-size-and-dimension-function.html">Array Size and Dimension Function </a>\n')
7- cat(' * <a href="array-broadcasting.html">Array Broadcasting </a>\n')
8- cat(' * <a href="array-concatenation.html">Array Concatenation </a>\n')
6+ cat(' * <a href="array-size-and-dimension-function.html">Array size and dimension function </a>\n')
7+ cat(' * <a href="array-broadcasting.html">Array broadcasting </a>\n')
8+ cat(' * <a href="array-concatenation.html">Array concatenation </a>\n')
99cat(' * <a href="sorting-functions.html">Sorting functions</a>\n')
10- cat(' * <a href="reversing-functions.html">Reversing Functions </a>\n')
10+ cat(' * <a href="reversing-functions.html">Reversing functions </a>\n')
1111}
1212```
1313
@@ -179,7 +179,7 @@ The squared Euclidean distance between x and y
179179` real ` ** ` squared_distance ` ** ` (row_vector x, row_vector[] y) ` <br >\newline
180180The Euclidean distance between x and y
181181
182- ## Array Size and Dimension Function
182+ ## Array size and dimension function
183183
184184The size of an array or matrix can be obtained using the ` dims() `
185185function. The ` dims() ` function is defined to take an argument
@@ -237,7 +237,7 @@ can be any type, but the size is just the size of the top level array,
237237not the total number of elements contained. For example, if ` x ` is of
238238type ` real[4,3] ` then ` size(x) ` is 4.
239239
240- ## Array Broadcasting {#array-broadcasting}
240+ ## Array broadcasting {#array-broadcasting}
241241
242242The following operations create arrays by repeating elements to fill
243243an array of a specified size. These operations work for all input
@@ -313,7 +313,7 @@ After the assignment to `b`, the value for `b[j,k,m,n]` is equal to
313313` a[m,n] ` where it is defined, for ` j ` in ` 1:3 ` , ` k ` in ` 1:4 ` , ` m ` in
314314` 1:5 ` , and ` n ` in ` 1:6 ` .
315315
316- ## Array Concatenation {#array-concatenation}
316+ ## Array concatenation {#array-concatenation}
317317
318318<!-- T; append_array; (T x, T y); -->
319319\index{{\tt \bfseries append\_ array }!{\tt (T x, T y): T}|hyperpage}
@@ -335,7 +335,7 @@ Any mismatches will cause an error to be thrown.
335335 x3 = append_array(x1, x2);
336336```
337337
338- ## Sorting Functions {#sorting-functions}
338+ ## Sorting functions {#sorting-functions}
339339
340340Sorting can be used to sort values or the indices of those values in
341341either ascending or descending order. For example, if ` v ` is declared
@@ -410,7 +410,7 @@ Number of components of v less than v[s]
410410` int ` ** ` rank ` ** ` (int[] v, int s) ` <br >\newline
411411Number of components of v less than v[ s]
412412
413- ## Reversing Functions {#reversing-functions}
413+ ## Reversing functions {#reversing-functions}
414414
415415Stan provides functions to create a new array by reversing the order of
416416elements in an existing array. For example, if ` v ` is declared as a real
0 commit comments