📄 r_imports.hpp
字号:
#ifndef __R_IMPORTS_HPP
#define __R_IMPORTS_HPP
#ifndef NO_JIT_LINKING
extern "C" {
extern void (*i__dqrls)(double *x, int *n, int *p, double *y, int *ny, double *tol, double *b, double *rsd, double *qty, int *k, int *jpvt, double *qraux, double *work); //AS dqrls_
extern void (*i__chol2inv)(double *x, int *size); //AS La_chol2inv
};
#include "r_imports.ipp"
#else
extern "C" {
__declspec(dllimport) void dqrls_(double *x, int *n, int *p, double *y, int *ny, double *tol, double *b, double *rsd, double *qty, int *k, int *jpvt, double *qraux, double *work); //AS dqrls_
__declspec(dllimport) void chol2inv(double *x, int *size); //AS La_chol2inv
};
#define dqrls dqrls_
#pragma lib("C:\Program Files\R\rw2001\lib\Rdll.lib")
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -