コード例 #1
0
ファイル: sparseLDA.cpp プロジェクト: rforge/rtm
	void setAnnotations(Rcpp::Matrix<REALSXP> annotations) {
		annotations_ = annotations;
		num_annotations_ = annotations.nrow();
		assert(annotations.ncol() == D_);
	}
コード例 #2
0
ファイル: array.cpp プロジェクト: wcstcyx/kfoots
inline Mat< CType(RType) > asMat(Rcpp::Matrix<RType>& m){
	return Mat< CType(RType) >(m.begin(), m.nrow(), m.ncol());
}