Skip to content

Commit

Permalink
docs: update C docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
steff456 committed Jul 14, 2023
1 parent e2ac1ed commit 00243f3
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions lib/node_modules/@stdlib/math/base/ops/cdiv/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ const double RECIP_EPS_SQR = 2.0 / ( STDLIB_CONSTANT_FLOAT64_EPS * STDLIB_CONSTA
*
* [@baudin:2012]: https://arxiv.org/abs/1210.4539
*
* @param re1 - real component
* @param im1 - imaginary component
* @param re2 - real component
* @param im2 - imaginary component
* @param r - partial result
* @param t - partial result
* @returns real part of the quotient
* @param re1 real component
* @param im1 imaginary component
* @param re2 real component
* @param im2 imaginary component
* @param r partial result
* @param t partial result
* @return real part of the quotient
*/
static double internalCompreal( const double re1, const double im1, const double re2, const double im2, const double r, const double t ) {
double br;
Expand All @@ -67,12 +67,12 @@ static double internalCompreal( const double re1, const double im1, const double
*
* [@baudin:2012]: https://arxiv.org/abs/1210.4539
*
* @param {number} re1 - real component
* @param {number} im1 - imaginary component
* @param {number} re2 - real component
* @param {number} im2 - imaginary component
* @param {number} re - real result
* @param {number} im - imaginary result
* @param re1 real component
* @param im1 imaginary component
* @param re2 real component
* @param im2 imaginary component
* @param re real result
* @param im imaginary result
*/
static void robustInternal( const double re1, const double im1, const double re2, const double im2, double* re, double* im ) {
double r;
Expand Down

0 comments on commit 00243f3

Please sign in to comment.