我怎么能看到源代码的系统.数学.sin
本文关键字:系统 数学 sin 源代码 怎么能 | 更新日期: 2023-09-27 18:18:13
在这个链接中,我们可以看到System.Math
类的源代码。但是我找不到正弦是如何定义的源代码。
我在这里错过了什么吗?
方法的签名是:
[System.Security.SecuritySafeCritical] // auto-generated
[ResourceExposure(ResourceScope.None)]
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public static extern double Sin(double a);
方法中的extern
意味着它在其他地方定义。在这种情况下,它将直接在CLR中实现(可能用C或汇编编写),这意味着没有可用的。net实现。
你不能认为是。net框架的源代码-它是一个extern
函数,这意味着它是在一个较低级别的库中实现的(可能是CLR本身,但我不确定)。
你可以试试共享源代码命令行
不,你不能看到sin函数的源代码,因为它是一个外部函数,嵌入在CLR中。sin是在微处理器内部的微码中实现的,所以这使得检查相同的实现变得非常困难,因为它可能因平台而异。
外部修饰符用于声明在外部实现的方法
sin函数声明为
public static extern double Sin(double x);
所以不可能看到sin函数的源代码
我不确定这是否有任何帮助,但你可以检查C版本的sin函数,也检查sin函数的实现。
根据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))
*/
如果您想查看重构的源代码,您可以尝试Telerik的JustDecompile:
http://www.telerik.com/products/decompiler.aspx在查看不可用的库源代码时使用。
如果您只想要一个实现,您可以学习基本计算器bc
的数学库libmath
, gnu版本可以在http://code.metager.de/source/xref/gnu/bc/1.06/bc/libmath.b
将参数wrt规范化。然后用sin的泰勒级数