摘要: Newton法程序设计 function [x_opt, f_opt, iterations] = newtons_method(f, gradient, hessian, x0, epsilon) x = x0; iterations = 0; while norm(gradient(x)) > 阅读全文
posted @ 2024-05-23 22:18 catsahsy 阅读(4) 评论(0) 推荐(0) 编辑