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..