Excel TINV 函数的等价数 MathNet.Numerics 是什么?
What is the equivalend MathNet.Numerics of Excel TINV function?
Excel的TINV
函数描述为
Returns 学生 t 分布的双尾逆。
https://support.office.com/en-us/article/TINV-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c
MathNet.Numerics中的等价C#
函数是什么?
https://numerics.mathdotnet.com/api/MathNet.Numerics.Distributions/StudentT.htm
我猜是StudentT
的方法InvCDF
double InvCDF(double location, double scale, double freedom, double p)
但令我困惑的是 TINV 只接受两个参数。
原来MathNet.Numerics
有先见之明,在ExcelFunctions
namespace
中加入了典型的Excel
功能。此时,TINV
的 MathNet.Numerics
版本记录在此处:
https://numerics.mathdotnet.com/api/MathNet.Numerics/ExcelFunctions.htm
Excel的TINV
函数描述为
Returns 学生 t 分布的双尾逆。
https://support.office.com/en-us/article/TINV-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c
MathNet.Numerics中的等价C#
函数是什么?
https://numerics.mathdotnet.com/api/MathNet.Numerics.Distributions/StudentT.htm
我猜是StudentT
InvCDF
double InvCDF(double location, double scale, double freedom, double p)
但令我困惑的是 TINV 只接受两个参数。
原来MathNet.Numerics
有先见之明,在ExcelFunctions
namespace
中加入了典型的Excel
功能。此时,TINV
的 MathNet.Numerics
版本记录在此处:
https://numerics.mathdotnet.com/api/MathNet.Numerics/ExcelFunctions.htm