Taylor
Taylor Sin(x)
Taylor Sin(x)
2007.07.12Sin 을 처리하는 함수를 유사하게 만들어봅니다. using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ruru.Math { public class Sin { public static double GetSin(double x) { double sum = 0.0; double r = 1.0; for (int i = 1; i < 13; i++) { r *= x / (1.0 * i); switch (i % 4) { case 1: sum += r; break; // 1 case 3: sum += (-1) * r; break; // -1 case 2: case 4: break; // 0 } } r..
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 =..