The R Project SVN R

Rev

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

Rev 44673 Rev 51018
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-6 The R Development Core Team.
3
 *  Copyright (C) 2001-2010 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 26... Line 26...
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);
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_dlange)(SEXP A, SEXP type);
31
typedef SEXP (*Rf_La_dtrcon)(SEXP A, SEXP norm);
32
typedef SEXP (*Rf_La_dtrcon)(SEXP A, SEXP norm);
32
typedef SEXP (*Rf_La_dgecon)(SEXP A, SEXP norm);
33
typedef SEXP (*Rf_La_dgecon)(SEXP A, SEXP norm);
33
typedef SEXP (*Rf_La_zgecon)(SEXP A, SEXP norm);
34
typedef SEXP (*Rf_La_zgecon)(SEXP A, SEXP norm);
34
typedef SEXP (*Rf_La_ztrcon)(SEXP A, SEXP norm);
35
typedef SEXP (*Rf_La_ztrcon)(SEXP A, SEXP norm);
35
typedef SEXP (*Rf_La_zgesv)(SEXP A, SEXP B);
36
typedef SEXP (*Rf_La_zgesv)(SEXP A, SEXP B);
Line 49... Line 50...
49
 
50
 
50
typedef struct {
51
typedef struct {
51
    Rf_La_svd svd;
52
    Rf_La_svd svd;
52
    Rf_La_rs  rs;
53
    Rf_La_rs  rs;
53
    Rf_La_rg  rg;
54
    Rf_La_rg  rg;
-
 
55
    Rf_La_dlange dlange;
54
    Rf_La_dgecon dgecon;
56
    Rf_La_dgecon dgecon;
55
    Rf_La_dgecon dtrcon;
57
    Rf_La_dtrcon dtrcon;
56
    Rf_La_zgecon zgecon;
58
    Rf_La_zgecon zgecon;
57
    Rf_La_zgecon ztrcon;
59
    Rf_La_ztrcon ztrcon;
58
    Rf_La_zgesv zgesv;
60
    Rf_La_zgesv zgesv;
59
    Rf_La_zgeqp3 zgeqp3;
61
    Rf_La_zgeqp3 zgeqp3;
60
    Rf_qr_coef_cmplx qr_coef_cmplx;
62
    Rf_qr_coef_cmplx qr_coef_cmplx;
61
    Rf_qr_qy_cmplx qr_qy_cmplx;
63
    Rf_qr_qy_cmplx qr_qy_cmplx;
62
    Rf_La_svd_cmplx svd_cmplx;
64
    Rf_La_svd_cmplx svd_cmplx;