Hi All,
If I run
var e = engine.Evaluate("x <- 3")
or
NumericVector x = engine.GetSymbol("x").AsNumeric();
I can't use neither e nor x for further calculations in C#, for example
var y = e + 4* x
What can/shall be done to have R.Net output usable for C# calculations. Thank you.
If I run
var e = engine.Evaluate("x <- 3")
or
NumericVector x = engine.GetSymbol("x").AsNumeric();
I can't use neither e nor x for further calculations in C#, for example
var y = e + 4* x
What can/shall be done to have R.Net output usable for C# calculations. Thank you.