akshay kulkarni
2018-03-19 16:21:59 UTC
dear sir,
I am using R to model stock prices but a slow "for" loop has stifled my research.
I am using Rcpp to speed up my "for" loop. I am also using RcppEigen to implement block operations on xts objects.....
very many thanks for your time and effort.....
yours sincerely,
AKSHAY M KULKARNI
I am using R to model stock prices but a slow "for" loop has stifled my research.
I am using Rcpp to speed up my "for" loop. I am also using RcppEigen to implement block operations on xts objects.....
require(RcppEigen)
it is not recognising the .block method in C++.cppFunction(' include <RcppEigen.h> .....body')
error: "include doesn't name a type"
My question is : how do I manipulate the installed RcppEigen package for the cppFunction to recognize block operations that are part of the Eigen library in C++? If I have to use the "include" key word (something like this: include <RcppEigen.h> ), where exactly should i position it in order to work with cppFunction ( I want to use Eigen block operation methods or functions inside the body of the cppFunction)?error: "include doesn't name a type"
very many thanks for your time and effort.....
yours sincerely,
AKSHAY M KULKARNI