Taylor Series - Exp(x) 구현
Taylor Series - Exp(x) 구현
2007.07.12http://mathworld.wolfram.com/TaylorSeries.html Exp(x) 를 C#으로 짜려면 위 식으로 짜야하는데 10번정도까지만 돌려보면 적당히 비슷한 값이 나온다. 빡시다 -_ -;; 다음 소스를 보자 // Exp Class using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ruru.Math { public class Exp { /// /// 1+1x/1! + 1x2/2! + 1x3/3! /// /// /// public static double Expo(double x) { double sum = 1.0; double r = 1.0; for (int i =..