2023年4月24日

C#凹凸曲线求拐点算法

摘要: 凹凸曲线求拐点算法实现: 代码: 1 public static double diff(Func<double, double> f, double x, double h) 2 { 3 return (f(x+h)-f(x-h))/(2*h); 4 } 5 6 public static dou 阅读全文

posted @ 2023-04-24 19:16 8888888888888 阅读(148) 评论(4) 推荐(0) 编辑

导航

Live2D