Rev 14948 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/*Tests using the default graphics device from withinan application that embeds the R interpreter.Equivalent of evaluating the expressions:plot(c(1, 2, 3, 4, 5, 6, 7 ,8, 9, 10))*/#include "embeddedRCall.h"intmain(int argc, char *argv[]){/* Evaluates the expressionplot(c(1,2,3,4,5,6,7,8,9,10))*/eval_R_command("plot", argc, argv);return(0);}