@@ -37,16 +37,16 @@ ODRPACK_EXTERN void close_file(
3737 * @param n `==>` Number of observations.
3838 * @param m `==>` Number of columns of data in the independent variable.
3939 * @param np `==>` Number of function parameters.
40- * @param nq `==>` Number of responses per observation.
40+ * @param q `==>` Number of responses per observation.
4141 * @param beta `==>` Array [np] of current parameter values.
4242 * @param xplusd `==>` Array [m][ldn] of current explanatory variable values, i.e., `x + delta`.
4343 * @param ifixb `==>` Array [np] of indicators for fixing parameters `beta`.
4444 * @param ifixx `==>` Array [m][ldifx] of indicators for fixing explanatory variable `x`.
4545 * @param ldifx `==>` Leading dimension of array `ifixx`, `ifixx ∈ {1, n}`
4646 * @param ideval `==>` Indicator for selecting computation to be performed.
47- * @param f `<==` Array [nq ][n] for predicted function values.
48- * @param fjacb `<==` Array [nq ][np][n] for Jacobian with respect to `beta`.
49- * @param fjacd `<==` Array [nq ][m][n] for Jacobian with respect to errors `delta`.
47+ * @param f `<==` Array [q ][n] for predicted function values.
48+ * @param fjacb `<==` Array [q ][np][n] for Jacobian with respect to `beta`.
49+ * @param fjacd `<==` Array [q ][m][n] for Jacobian with respect to errors `delta`.
5050 * @param istop `<==` Integer for stopping condition. Values:
5151 * 0 - current `beta` and `x + delta` were acceptable and values were computed successfully,
5252 * 1 - current `beta` and `x + delta` are not acceptable; ODRPACK95 should select values closer to most recently used values if possible,
@@ -56,7 +56,7 @@ typedef void (*odrpack_fcn_t)(
5656 const int * n ,
5757 const int * m ,
5858 const int * np ,
59- const int * nq ,
59+ const int * q ,
6060 const double beta [],
6161 const double xplusd [],
6262 const int ifixb [],
@@ -76,9 +76,9 @@ typedef void (*odrpack_fcn_t)(
7676 * @param n `==>` Number of observations.
7777 * @param m `==>` Number of columns of data in the independent variable.
7878 * @param np `==>` Number of function parameters.
79- * @param nq `==>` Number of responses per observation.
79+ * @param q `==>` Number of responses per observation.
8080 * @param beta `<=>` Array [np] of function parameters.
81- * @param y `==>` Array [nq ][n] of dependent variable. Unused when the model is implicit.
81+ * @param y `==>` Array [q ][n] of dependent variable. Unused when the model is implicit.
8282 * @param x `==>` Array [m][n] of explanatory variable.
8383 * @param delta `<=>` Optional array [m][n] with initial error in the `x` data.
8484 * @param lower `==>` Optional array [np] with lower bound on `beta`.
@@ -90,7 +90,7 @@ ODRPACK_EXTERN void odr_short_c(
9090 const int * n ,
9191 const int * m ,
9292 const int * np ,
93- const int * nq ,
93+ const int * q ,
9494 double beta [],
9595 const double y [],
9696 const double x [],
@@ -107,16 +107,16 @@ ODRPACK_EXTERN void odr_short_c(
107107 * @param n `==>` Number of observations.
108108 * @param m `==>` Number of columns of data in the independent variable.
109109 * @param np `==>` Number of function parameters.
110- * @param nq `==>` Number of responses per observation.
110+ * @param q `==>` Number of responses per observation.
111111 * @param ldwe `==>` Leading dimension of array `we`, `ldwe ∈ {1, n}`.
112- * @param ld2we `==>` Second dimension of array `we`, `ld2we ∈ {1, nq }`.
112+ * @param ld2we `==>` Second dimension of array `we`, `ld2we ∈ {1, q }`.
113113 * @param ldwd `==>` Leading dimension of array `wd`, `ldwd ∈ {1, n}`.
114114 * @param ld2wd `==>` Second dimension of array `wd`, `ld2wd ∈ {1, m}`.
115115 * @param ldifx `==>` Leading dimension of array `ifixx`, `ldifx ∈ {1, n}`.
116116 * @param beta `<=>` Array [np] of function parameters.
117- * @param y `==>` Array [nq ][n] of dependent variable. Unused when the model is implicit.
117+ * @param y `==>` Array [q ][n] of dependent variable. Unused when the model is implicit.
118118 * @param x `==>` Array [m][n] of explanatory variable.
119- * @param we `==>` Optional array [nq ][ld2we][ldwe] with `epsilon` weights.
119+ * @param we `==>` Optional array [q ][ld2we][ldwe] with `epsilon` weights.
120120 * @param wd `==>` Optional array [m][ld2wd][ldwd] with `delta` weights.
121121 * @param ifixb `==>` Optional array [np] with values designating whether the elements of `beta` are fixed at their input values or not.
122122 * @param ifixx `==>` Optional array [m][ldifx] with values designating whether the elements of `x` are fixed at their input values or not.
@@ -134,7 +134,7 @@ ODRPACK_EXTERN void odr_medium_c(
134134 const int * n ,
135135 const int * m ,
136136 const int * np ,
137- const int * nq ,
137+ const int * q ,
138138 const int * ldwe ,
139139 const int * ld2we ,
140140 const int * ldwd ,
@@ -164,9 +164,9 @@ ODRPACK_EXTERN void odr_medium_c(
164164 * @param n `==>` Number of observations.
165165 * @param m `==>` Number of columns of data in the independent variable.
166166 * @param np `==>` Number of function parameters.
167- * @param nq `==>` Number of responses per observation.
167+ * @param q `==>` Number of responses per observation.
168168 * @param ldwe `==>` Leading dimension of array `we`, `ldwe ∈ {1, n}`.
169- * @param ld2we `==>` Second dimension of array `we`, `ld2we ∈ {1, nq }`.
169+ * @param ld2we `==>` Second dimension of array `we`, `ld2we ∈ {1, q }`.
170170 * @param ldwd `==>` Leading dimension of array `wd`, `ldwd ∈ {1, n}`.
171171 * @param ld2wd `==>` Second dimension of array `wd`, `ld2wd ∈ {1, m}`.
172172 * @param ldifx `==>` Leading dimension of array `ifixx`, `ldifx ∈ {1, n}`.
@@ -175,9 +175,9 @@ ODRPACK_EXTERN void odr_medium_c(
175175 * @param lwork `==>` Length of array `work`.
176176 * @param liwork `==>` Length of array `iwork`.
177177 * @param beta `<=>` Array [np] of function parameters.
178- * @param y `==>` Array [nq ][n] of dependent variable. Unused when the model is implicit.
178+ * @param y `==>` Array [q ][n] of dependent variable. Unused when the model is implicit.
179179 * @param x `==>` Array [m][n] of explanatory variable.
180- * @param we `==>` Optional array [nq ][ld2we][ldwe] with `epsilon` weights.
180+ * @param we `==>` Optional array [q ][ld2we][ldwe] with `epsilon` weights.
181181 * @param wd `==>` Optional array [m][ld2wd][ldwd] with `delta` weights.
182182 * @param ifixb `==>` Optional array [np] with values designating whether the elements of `beta` are fixed at their input values or not.
183183 * @param ifixx `==>` Optional array [m][ldifx] with values designating whether the elements of `x` are fixed at their input values or not.
@@ -206,7 +206,7 @@ ODRPACK_EXTERN void odr_long_c(
206206 const int * n ,
207207 const int * m ,
208208 const int * np ,
209- const int * nq ,
209+ const int * q ,
210210 const int * ldwe ,
211211 const int * ld2we ,
212212 const int * ldwd ,
@@ -337,13 +337,13 @@ typedef struct
337337 *
338338 * @param m `==>` Number of columns of data in the explanatory variable.
339339 * @param np `==>` Number of function parameters.
340- * @param nq `==>` Number of responses per observation.
340+ * @param q `==>` Number of responses per observation.
341341 * @param iworkidx `<==` 0-based indexes of integer work array.
342342 */
343343ODRPACK_EXTERN void loc_iwork_c (
344344 const int * m ,
345345 const int * np ,
346- const int * nq ,
346+ const int * q ,
347347 iworkidx_t * iworkidx );
348348
349349/**
@@ -352,7 +352,7 @@ ODRPACK_EXTERN void loc_iwork_c(
352352 * @param n `==>` Number of observations.
353353 * @param m `==>` Number of columns of data in the explanatory variable.
354354 * @param np `==>` Number of function parameters.
355- * @param nq `==>` Number of responses per observation.
355+ * @param q `==>` Number of responses per observation.
356356 * @param ldwe `==>` Leading dimension of array `we`.
357357 * @param ld2we `==>` Second dimension of array `we`.
358358 * @param isodr `==>` Variable designating whether the solution is by ODR (`isodr=.true.`) or by OLS (`isodr=.false.`).
@@ -362,7 +362,7 @@ ODRPACK_EXTERN void loc_rwork_c(
362362 const int * n ,
363363 const int * m ,
364364 const int * np ,
365- const int * nq ,
365+ const int * q ,
366366 const int * ldwe ,
367367 const int * ld2we ,
368368 const bool * isodr ,
@@ -374,7 +374,7 @@ ODRPACK_EXTERN void loc_rwork_c(
374374 * @param n `==>` Number of observations.
375375 * @param m `==>` Number of columns of data in the explanatory variable.
376376 * @param np `==>` Number of function parameters.
377- * @param nq `==>` Number of responses per observation.
377+ * @param q `==>` Number of responses per observation.
378378 * @param isodr `==>` Variable designating whether the solution is by ODR (`isodr=.true.`) or by OLS (`isodr=.false.`).
379379 * @param lwork `<==` Length of real `work` array.
380380 * @param liwork `<==` Length of integer `iwork` array.
@@ -383,7 +383,7 @@ ODRPACK_EXTERN void workspace_dimensions_c(
383383 const int * n ,
384384 const int * m ,
385385 const int * np ,
386- const int * nq ,
386+ const int * q ,
387387 const bool * isodr ,
388388 int * lwork ,
389389 int * liwork );
0 commit comments