在这个link中,我们可以看到System.Math
类的源代码。但我找不到正弦定义的源代码。
这里有什么我想念的吗?
答案 0 :(得分:9)
该方法的签名是:
[System.Security.SecuritySafeCritical] // auto-generated
[ResourceExposure(ResourceScope.None)]
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public static extern double Sin(double a);
方法中的extern
表示它在别处定义。在这种情况下,它将直接在CLR中实现(可能用C或汇编语言编写),这意味着没有可用的.NET实现。
答案 1 :(得分:5)
您无法想到.NET Framework源代码 - 它是一个extern
函数,这意味着它在较低级别的库中实现(可能是CLR本身,但我不确定)。
您可以尝试Shared Source CLI
答案 2 :(得分:1)
不,你不能将sin函数的源代码看作是extern函数并嵌入在CLR中。正弦是在微处理器内部的微码中实现的,因此很难检查它的实现,因为它可能因平台而异。
extern修饰符用于声明外部实现的方法
sin函数声明为
public static extern double Sin(double x);
因此无法查看sin函数的源代码
我不确定这是否有任何帮助,但您可以查看C version of the sin fucntion并查看sin function implementation.
答案 3 :(得分:0)
如果您想查看重建的源代码,可以尝试使用Telerik的JustDecompile:
http://www.telerik.com/products/decompiler.aspx
在库不可用时查看库的源代码时使用此选项。它产生清晰的输出IMO。
答案 4 :(得分:0)
如果您只想要一个实现,可以学习基本计算器libmath
的数学库bc
,可以在http://code.metager.de/source/xref/gnu/bc/1.06/bc/libmath.b读取gnu版本
它使参数wrt正常化。 pi然后使用泰勒系列的罪。
答案 5 :(得分:0)
根据Rahul Tripathi的说法,如果C#Sin是C Sin,它使用13次多项式。 http://www.netlib.org/fdlibm/k_sin.c
Algorithm
/* __kernel_sin( x, y, iy)
* kernel sin function on [-pi/4, pi/4], pi/4 ~ 0.7854
* Input x is assumed to be bounded by ~pi/4 in magnitude.
* Input y is the tail of x.
* Input iy indicates whether y is 0. (if iy=0, y assume to be 0).
*
* Algorithm
* 1. Since sin(-x) = -sin(x), we need only to consider positive x.
* 2. if x < 2^-27 (hx<0x3e400000 0), return x with inexact if x!=0.
* 3. sin(x) is approximated by a polynomial of degree 13 on
* [0,pi/4]
* 3 13
* sin(x) ~ x + S1*x + ... + S6*x
* where
*
* |sin(x) 2 4 6 8 10 12 | -58
* |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
* | x |
*
* 4. sin(x+y) = sin(x) + sin'(x')*y
* ~ sin(x) + (1-x*x/2)*y
* For better accuracy, let
* 3 2 2 2 2
* r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
* then 3 2
* sin(x) = x + (S1*x + (x *(r-y/2)+y))
*/