The R Project SVN R

Rev

Rev 36820 | Rev 44673 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36820 Rev 37126
Line 1... Line 1...
1
/*
1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
2
 *  R : A Computer Language for Statistical Data Analysis
3
 *  Copyright (C) 2001-4 The R Development Core Team.
3
 *  Copyright (C) 2001-6 The R Development Core Team.
4
 *
4
 *
5
 *  This program is free software; you can redistribute it and/or modify
5
 *  This program is free software; you can redistribute it and/or modify
6
 *  it under the terms of the GNU Lesser General Public License as published by
6
 *  it under the terms of the GNU Lesser General Public License as published by
7
 *  the Free Software Foundation; either version 2.1 of the License, or
7
 *  the Free Software Foundation; either version 2.1 of the License, or
8
 *  (at your option) any later version.
8
 *  (at your option) any later version.
Line 24... Line 24...
24
 
24
 
25
#include <Rinternals.h>
25
#include <Rinternals.h>
26
 
26
 
27
typedef SEXP (*Rf_La_svd)(SEXP jobu, SEXP jobv, SEXP x, SEXP s, SEXP u, 
27
typedef SEXP (*Rf_La_svd)(SEXP jobu, SEXP jobv, SEXP x, SEXP s, SEXP u, 
28
			  SEXP v, SEXP method);
28
			  SEXP v, SEXP method);
29
typedef SEXP (*Rf_La_rs)(SEXP x, SEXP only_values, SEXP method);
29
typedef SEXP (*Rf_La_rs)(SEXP x, SEXP only_values);
30
typedef SEXP (*Rf_La_rg)(SEXP x, SEXP only_values);
30
typedef SEXP (*Rf_La_rg)(SEXP x, SEXP only_values);
31
typedef SEXP (*Rf_La_zgesv)(SEXP A, SEXP B);
31
typedef SEXP (*Rf_La_zgesv)(SEXP A, SEXP B);
32
typedef SEXP (*Rf_La_zgeqp3)(SEXP A);
32
typedef SEXP (*Rf_La_zgeqp3)(SEXP A);
33
typedef SEXP (*Rf_qr_coef_cmplx)(SEXP Q, SEXP B);
33
typedef SEXP (*Rf_qr_coef_cmplx)(SEXP Q, SEXP B);
34
typedef SEXP (*Rf_qr_qy_cmplx)(SEXP Q, SEXP B, SEXP trans);
34
typedef SEXP (*Rf_qr_qy_cmplx)(SEXP Q, SEXP B, SEXP trans);