Rev 7129 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/*header file for the nlme packageCopyright 1999-2001 Saikat DebRoyCopyright 2007-2016 The R Core TeamThis file is part of the nlme package for S and related languagesand is made available under the terms of the GNU General PublicLicense, version 2, or at your option, any later version,incorporated herein by reference.This program is distributed in the hope that it will beuseful, but WITHOUT ANY WARRANTY; without even the impliedwarranty of MERCHANTABILITY or FITNESS FOR A PARTICULARPURPOSE. See the GNU General Public License for moredetails.You should have received a copy of the GNU General Public Licensealong with this program; if not, a copy is available athttp://www.r-project.org/Licenses/*/#ifndef NLME_MATRIX_H#define NLME_MATRIX_H#include "base.h"void F77_NAME(chol)(double *a, int *lda, int *n, double *v, int *info);void F77_NAME(rs)(int *nm, int *n, double *a, double *w,int *matz, double *z, double *fv1, double *fv2, int *ierr);#include <R_ext/Linpack.h>typedef struct QR_struct {double *mat, *qraux;int *pivot, rank, ldmat, nrow, ncol;} *QRptr;extern void d_axpy(double *, double, double *, int);extern double d_dot_prod(double *, int, double *, int, int);extern double d_sum_sqr( double *, int);extern double *copy_mat(double *, int, double *, int, int, int);extern double *copy_trans(double *, int, double *, int, int, int);extern double *mult_mat(double *, int, double *, int, int, int, double *,int, int);extern QRptr QR(double *, int, int, int);extern void QRfree(QRptr);extern int QRqty(QRptr, double *, int, int);extern int QRsolve(QRptr, double *, int, int, double *, int);extern double QRlogAbsDet(QRptr);extern void QRstoreR(QRptr, double *, int);extern int QR_and_rotate(double *, int, int, int,double *, int, int, double *,double *, int);#endif /* NLME_MATRIX_H */