Feeds
已回答
Newton Method using Matlab Code
f = inline (x^4 + 2*x^3-23*x^2+12*x+36); fd = inline (4*x^3 + 6*x^2 - 46*x + 12); x = -10:0.01:10; y = f(x); x0 = -10; whil...
Newton Method using Matlab Code
f = inline (x^4 + 2*x^3-23*x^2+12*x+36); fd = inline (4*x^3 + 6*x^2 - 46*x + 12); x = -10:0.01:10; y = f(x); x0 = -10; whil...
5 years 前 | 0
