Recent content by Benx
-
B
Newton-Raphson in Visual Basic 6
µ, is the smallest root of the sixth degree polynomial f(µ). The general shape of the graph of this equation shows that the real roots will be distributed as follows: 1 root < a1 < 2 (possible) roots < a2 < 2 (possible) roots < a3 < 1 root.- Benx
- Post #18
- Forum: Programming and Computer Science
-
B
Newton-Raphson in Visual Basic 6
Hello, There is no error on derivative function! Newton-Raphson is not indicated for this case. first we compute u_bound an l_bound: //Get upper bound on mu u_bound1 = a1-fabs(b1); u_bound2 = a2-fabs(b2); u_bound3 = a3-fabs(b3); u_bound = u_bound1; if...- Benx
- Post #16
- Forum: Programming and Computer Science
-
B
Newton-Raphson in Visual Basic 6
Newton-Raphson- Benx
- Post #11
- Forum: Programming and Computer Science
-
B
Newton-Raphson in Visual Basic 6
Newton-Raphson Hello, You can see algorithm, available in Text file of project. So, I want to know if the algorithm is implemented properly. Best regards Benx- Benx
- Post #10
- Forum: Programming and Computer Science
-
B
Newton-Raphson in Visual Basic 6
Ok, I will attach a vbproject to this message.- Benx
- Post #7
- Forum: Programming and Computer Science
-
B
Newton-Raphson in Visual Basic 6
Hello, I do not found the same result as example given in the book, i don't know were is the failure. I think is better to see the code. or the algorithms "function and it's derivative". Benx- Benx
- Post #5
- Forum: Programming and Computer Science
-
B
Newton-Raphson in Visual Basic 6
Hello, I am progamming in Visual Basic 6, need help to resolve equation using Newton-Raphson method. My program is running, but not properly! Thank you.- Benx
- Thread
- Visual
- Replies: 17
- Forum: Programming and Computer Science