Click here to Skip to main content
15,867,568 members

Comments by Member 8312096 (Top 6 by date)

Member 8312096 1-Dec-13 10:38am View    
I am new to this mathematics and programming. I just want to get the same ansnwer as Matlab "gammaincinv" function in VB.NET. Matlab definition is here http://www.mathworks.cn/cn/help/matlab/ref/gammaincinv.html
Member 8312096 26-Apr-12 4:21am View    
Dear VJ Reddy,
Great!!!!! its working fine. Thanks a lot. This is a small snippet, but it does a big task for me. Thanks again.
Member 8312096 6-Mar-12 22:58pm View    
Thanks SAKryukov,
I solved my problem using C# libraries within my VB.NET project. Thanks!
Member 8312096 5-Mar-12 23:54pm View    
Thanks1
Member 8312096 5-Mar-12 5:36am View    
Thanks, Just I want to solve linear equations with 3 unknowns. I can define matrix and feed data or get data from another arrays. Also can do arithmetic operations. But my knowledge is poor to solve linear equations.
Example: I have a matrix like Ax=B. Data for A, x and B matrix come from series of calculations. When I use least square method to solve this matrix, I get three equations like (data are not real)

5x1 + 0 + 10x3 = 1
0 + 10x2 + 0 = 0
10x1 + 0 + 34x3 = 0

my data:

A=[5,0,10,0,10,0,10,0,34]
B=[1,0,0]
x=[x1,x2,x3]

so I want to solve x1, x2 and x3
manual solution is: x1=34/70, x2=0, x3=-10/70

Can you suggest any method?
Thanks!