|
|
@ -1,4 +1,4 @@
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -32,7 +32,7 @@
|
|
|
|
int i4_min(int i1, int i2)
|
|
|
|
int i4_min(int i1, int i2)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
I4_MIN returns the smaller of two I4's.
|
|
|
|
I4_MIN returns the smaller of two I4's.
|
|
|
@ -62,7 +62,7 @@ int i4_min(int i1, int i2)
|
|
|
|
double r8_epsilon(void)
|
|
|
|
double r8_epsilon(void)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
R8_EPSILON returns the R8 round off unit.
|
|
|
|
R8_EPSILON returns the R8 round off unit.
|
|
|
@ -99,7 +99,7 @@ double r8_epsilon(void)
|
|
|
|
double r8_max(double x, double y)
|
|
|
|
double r8_max(double x, double y)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
R8_MAX returns the maximum of two R8's.
|
|
|
|
R8_MAX returns the maximum of two R8's.
|
|
|
@ -129,7 +129,7 @@ double r8_max(double x, double y)
|
|
|
|
double r8_abs(double x)
|
|
|
|
double r8_abs(double x)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
R8_ABS returns the absolute value of an R8.
|
|
|
|
R8_ABS returns the absolute value of an R8.
|
|
|
@ -159,7 +159,7 @@ double r8_abs(double x)
|
|
|
|
double r8_sign(double x)
|
|
|
|
double r8_sign(double x)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
R8_SIGN returns the sign of an R8.
|
|
|
|
R8_SIGN returns the sign of an R8.
|
|
|
@ -189,7 +189,7 @@ double r8_sign(double x)
|
|
|
|
double r8mat_amax(int m, int n, double a[])
|
|
|
|
double r8mat_amax(int m, int n, double a[])
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
R8MAT_AMAX returns the maximum absolute value entry of an R8MAT.
|
|
|
|
R8MAT_AMAX returns the maximum absolute value entry of an R8MAT.
|
|
|
@ -234,7 +234,7 @@ double r8mat_amax(int m, int n, double a[])
|
|
|
|
void r8mat_copy(double a2[], int m, int n, double a1[])
|
|
|
|
void r8mat_copy(double a2[], int m, int n, double a1[])
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
R8MAT_COPY_NEW copies one R8MAT to a "new" R8MAT.
|
|
|
|
R8MAT_COPY_NEW copies one R8MAT to a "new" R8MAT.
|
|
|
@ -276,7 +276,7 @@ void r8mat_copy(double a2[], int m, int n, double a1[])
|
|
|
|
void daxpy(int n, double da, double dx[], int incx, double dy[], int incy)
|
|
|
|
void daxpy(int n, double da, double dx[], int incx, double dy[], int incy)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DAXPY computes constant times a vector plus a vector.
|
|
|
|
DAXPY computes constant times a vector plus a vector.
|
|
|
@ -328,7 +328,7 @@ void daxpy(int n, double da, double dx[], int incx, double dy[], int incy)
|
|
|
|
if (n <= 0 || da == 0.0) return;
|
|
|
|
if (n <= 0 || da == 0.0) return;
|
|
|
|
|
|
|
|
|
|
|
|
int i, ix, iy, m;
|
|
|
|
int i, ix, iy, m;
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Code for unequal increments or equal increments
|
|
|
|
Code for unequal increments or equal increments
|
|
|
|
not equal to 1.
|
|
|
|
not equal to 1.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -347,7 +347,7 @@ void daxpy(int n, double da, double dx[], int incx, double dy[], int incy)
|
|
|
|
iy = iy + incy;
|
|
|
|
iy = iy + incy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Code for both increments equal to 1.
|
|
|
|
Code for both increments equal to 1.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
else {
|
|
|
|
else {
|
|
|
@ -367,7 +367,7 @@ void daxpy(int n, double da, double dx[], int incx, double dy[], int incy)
|
|
|
|
double ddot(int n, double dx[], int incx, double dy[], int incy)
|
|
|
|
double ddot(int n, double dx[], int incx, double dy[], int incy)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DDOT forms the dot product of two vectors.
|
|
|
|
DDOT forms the dot product of two vectors.
|
|
|
@ -422,7 +422,7 @@ double ddot(int n, double dx[], int incx, double dy[], int incy)
|
|
|
|
int i, m;
|
|
|
|
int i, m;
|
|
|
|
double dtemp = 0.0;
|
|
|
|
double dtemp = 0.0;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Code for unequal increments or equal increments
|
|
|
|
Code for unequal increments or equal increments
|
|
|
|
not equal to 1.
|
|
|
|
not equal to 1.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -435,7 +435,7 @@ double ddot(int n, double dx[], int incx, double dy[], int incy)
|
|
|
|
iy = iy + incy;
|
|
|
|
iy = iy + incy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Code for both increments equal to 1.
|
|
|
|
Code for both increments equal to 1.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
else {
|
|
|
|
else {
|
|
|
@ -457,7 +457,7 @@ double ddot(int n, double dx[], int incx, double dy[], int incy)
|
|
|
|
double dnrm2(int n, double x[], int incx)
|
|
|
|
double dnrm2(int n, double x[], int incx)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DNRM2 returns the euclidean norm of a vector.
|
|
|
|
DNRM2 returns the euclidean norm of a vector.
|
|
|
@ -531,7 +531,7 @@ void dqrank(double a[], int lda, int m, int n, double tol, int* kr,
|
|
|
|
int jpvt[], double qraux[])
|
|
|
|
int jpvt[], double qraux[])
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DQRANK computes the QR factorization of a rectangular matrix.
|
|
|
|
DQRANK computes the QR factorization of a rectangular matrix.
|
|
|
@ -625,7 +625,7 @@ void dqrdc(double a[], int lda, int n, int p, double qraux[], int jpvt[],
|
|
|
|
double work[], int job)
|
|
|
|
double work[], int job)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DQRDC computes the QR factorization of a real rectangular matrix.
|
|
|
|
DQRDC computes the QR factorization of a real rectangular matrix.
|
|
|
@ -709,7 +709,7 @@ void dqrdc(double a[], int lda, int n, int p, double qraux[], int jpvt[],
|
|
|
|
double maxnrm, nrmxl, t, tt;
|
|
|
|
double maxnrm, nrmxl, t, tt;
|
|
|
|
|
|
|
|
|
|
|
|
int pl = 1, pu = 0;
|
|
|
|
int pl = 1, pu = 0;
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
If pivoting is requested, rearrange the columns.
|
|
|
|
If pivoting is requested, rearrange the columns.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (job != 0) {
|
|
|
|
if (job != 0) {
|
|
|
@ -738,19 +738,19 @@ void dqrdc(double a[], int lda, int n, int p, double qraux[], int jpvt[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Compute the norms of the free columns.
|
|
|
|
Compute the norms of the free columns.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
for (j = pl; j <= pu; j++)
|
|
|
|
for (j = pl; j <= pu; j++)
|
|
|
|
qraux[j - 1] = dnrm2(n, a + 0 + (j - 1) * lda, 1);
|
|
|
|
qraux[j - 1] = dnrm2(n, a + 0 + (j - 1) * lda, 1);
|
|
|
|
for (j = pl; j <= pu; j++)
|
|
|
|
for (j = pl; j <= pu; j++)
|
|
|
|
work[j - 1] = qraux[j - 1];
|
|
|
|
work[j - 1] = qraux[j - 1];
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Perform the Householder reduction of A.
|
|
|
|
Perform the Householder reduction of A.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
lup = i4_min(n, p);
|
|
|
|
lup = i4_min(n, p);
|
|
|
|
for (int l = 1; l <= lup; l++) {
|
|
|
|
for (int l = 1; l <= lup; l++) {
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Bring the column of largest norm into the pivot position.
|
|
|
|
Bring the column of largest norm into the pivot position.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (pl <= l && l < pu) {
|
|
|
|
if (pl <= l && l < pu) {
|
|
|
@ -771,7 +771,7 @@ void dqrdc(double a[], int lda, int n, int p, double qraux[], int jpvt[],
|
|
|
|
jpvt[l - 1] = jp;
|
|
|
|
jpvt[l - 1] = jp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Compute the Householder transformation for column L.
|
|
|
|
Compute the Householder transformation for column L.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
qraux[l - 1] = 0.0;
|
|
|
|
qraux[l - 1] = 0.0;
|
|
|
@ -782,7 +782,7 @@ void dqrdc(double a[], int lda, int n, int p, double qraux[], int jpvt[],
|
|
|
|
nrmxl = nrmxl * r8_sign(a[l - 1 + (l - 1) * lda]);
|
|
|
|
nrmxl = nrmxl * r8_sign(a[l - 1 + (l - 1) * lda]);
|
|
|
|
dscal(n - l + 1, 1.0 / nrmxl, a + l - 1 + (l - 1)*lda, 1);
|
|
|
|
dscal(n - l + 1, 1.0 / nrmxl, a + l - 1 + (l - 1)*lda, 1);
|
|
|
|
a[l - 1 + (l - 1)*lda] = 1.0 + a[l - 1 + (l - 1) * lda];
|
|
|
|
a[l - 1 + (l - 1)*lda] = 1.0 + a[l - 1 + (l - 1) * lda];
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Apply the transformation to the remaining columns, updating the norms.
|
|
|
|
Apply the transformation to the remaining columns, updating the norms.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
for (j = l + 1; j <= p; j++) {
|
|
|
|
for (j = l + 1; j <= p; j++) {
|
|
|
@ -804,7 +804,7 @@ void dqrdc(double a[], int lda, int n, int p, double qraux[], int jpvt[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Save the transformation.
|
|
|
|
Save the transformation.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
qraux[l - 1] = a[l - 1 + (l - 1) * lda];
|
|
|
|
qraux[l - 1] = a[l - 1 + (l - 1) * lda];
|
|
|
@ -819,7 +819,7 @@ int dqrls(double a[], int lda, int m, int n, double tol, int* kr, double b[],
|
|
|
|
double x[], double rsd[], int jpvt[], double qraux[], int itask)
|
|
|
|
double x[], double rsd[], int jpvt[], double qraux[], int itask)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DQRLS factors and solves a linear system in the least squares sense.
|
|
|
|
DQRLS factors and solves a linear system in the least squares sense.
|
|
|
@ -949,12 +949,12 @@ int dqrls(double a[], int lda, int m, int n, double tol, int* kr, double b[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ind = 0;
|
|
|
|
ind = 0;
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Factor the matrix.
|
|
|
|
Factor the matrix.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (itask == 1)
|
|
|
|
if (itask == 1)
|
|
|
|
dqrank(a, lda, m, n, tol, kr, jpvt, qraux);
|
|
|
|
dqrank(a, lda, m, n, tol, kr, jpvt, qraux);
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Solve the least-squares problem.
|
|
|
|
Solve the least-squares problem.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
dqrlss(a, lda, m, n, *kr, b, x, rsd, jpvt, qraux);
|
|
|
|
dqrlss(a, lda, m, n, *kr, b, x, rsd, jpvt, qraux);
|
|
|
@ -966,7 +966,7 @@ void dqrlss(double a[], int lda, int m, int n, int kr, double b[], double x[],
|
|
|
|
double rsd[], int jpvt[], double qraux[])
|
|
|
|
double rsd[], int jpvt[], double qraux[])
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DQRLSS solves a linear system in a least squares sense.
|
|
|
|
DQRLSS solves a linear system in a least squares sense.
|
|
|
@ -1075,7 +1075,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
double qy[], double qty[], double b[], double rsd[], double ab[], int job)
|
|
|
|
double qy[], double qty[], double b[], double rsd[], double ab[], int job)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DQRSL computes transformations, projections, and least squares solutions.
|
|
|
|
DQRSL computes transformations, projections, and least squares solutions.
|
|
|
@ -1222,12 +1222,12 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
int ju;
|
|
|
|
int ju;
|
|
|
|
double t;
|
|
|
|
double t;
|
|
|
|
double temp;
|
|
|
|
double temp;
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Set INFO flag.
|
|
|
|
Set INFO flag.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
info = 0;
|
|
|
|
info = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Determine what is to be computed.
|
|
|
|
Determine what is to be computed.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
cqy = ( job / 10000 != 0);
|
|
|
|
cqy = ( job / 10000 != 0);
|
|
|
@ -1237,7 +1237,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
cab = ((job % 10) != 0);
|
|
|
|
cab = ((job % 10) != 0);
|
|
|
|
ju = i4_min(k, n - 1);
|
|
|
|
ju = i4_min(k, n - 1);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Special action when N = 1.
|
|
|
|
Special action when N = 1.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (ju == 0) {
|
|
|
|
if (ju == 0) {
|
|
|
@ -1257,7 +1257,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
rsd[0] = 0.0;
|
|
|
|
rsd[0] = 0.0;
|
|
|
|
return info;
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Set up to compute QY or QTY.
|
|
|
|
Set up to compute QY or QTY.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (cqy) {
|
|
|
|
if (cqy) {
|
|
|
@ -1268,7 +1268,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
for (i = 1; i <= n; i++)
|
|
|
|
for (i = 1; i <= n; i++)
|
|
|
|
qty[i - 1] = y[i - 1];
|
|
|
|
qty[i - 1] = y[i - 1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Compute QY.
|
|
|
|
Compute QY.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (cqy) {
|
|
|
|
if (cqy) {
|
|
|
@ -1283,7 +1283,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Compute Q'*Y.
|
|
|
|
Compute Q'*Y.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (cqty) {
|
|
|
|
if (cqty) {
|
|
|
@ -1297,7 +1297,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Set up to compute B, RSD, or AB.
|
|
|
|
Set up to compute B, RSD, or AB.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (cb) {
|
|
|
|
if (cb) {
|
|
|
@ -1320,7 +1320,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
for (i = 1; i <= k; i++)
|
|
|
|
for (i = 1; i <= k; i++)
|
|
|
|
rsd[i - 1] = 0.0;
|
|
|
|
rsd[i - 1] = 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Compute B.
|
|
|
|
Compute B.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (cb) {
|
|
|
|
if (cb) {
|
|
|
@ -1337,7 +1337,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Compute RSD or AB as required.
|
|
|
|
Compute RSD or AB as required.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
if (cr || cab) {
|
|
|
|
if (cr || cab) {
|
|
|
@ -1369,7 +1369,7 @@ int dqrsl(double a[], int lda, int n, int k, double qraux[], double y[],
|
|
|
|
void dscal(int n, double sa, double x[], int incx)
|
|
|
|
void dscal(int n, double sa, double x[], int incx)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DSCAL scales a vector by a constant.
|
|
|
|
DSCAL scales a vector by a constant.
|
|
|
@ -1444,7 +1444,7 @@ void dscal(int n, double sa, double x[], int incx)
|
|
|
|
void dswap(int n, double x[], int incx, double y[], int incy)
|
|
|
|
void dswap(int n, double x[], int incx, double y[], int incy)
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
DSWAP interchanges two vectors.
|
|
|
|
DSWAP interchanges two vectors.
|
|
|
@ -1529,7 +1529,7 @@ void dswap(int n, double x[], int incx, double y[], int incy)
|
|
|
|
void qr_solve(double x[], int m, int n, double a[], double b[])
|
|
|
|
void qr_solve(double x[], int m, int n, double a[], double b[])
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
/**
|
|
|
|
Purpose:
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
|
|
|
|
QR_SOLVE solves a linear system in the least squares sense.
|
|
|
|
QR_SOLVE solves a linear system in the least squares sense.
|
|
|
|