Dear All,
I want to integrate some R functions for matrix into VB.Net application.
This is my matrix – to solve C,D,E
These are R codes (working properly)
> e<- matrix(nrow=3, ncol=3, data=c(5,0,10,0,10,10,10,0,34))
> f<- c(1,0,0)
> solve(e,f)
[1] 0.4857143 0.0000000 -0.1428571
>
So...