C# 命名空间 System.Windows.Forms.DataVisualization.Charting.StatisticFormula 似乎有一些我需要的统计函数。命名空间记录在 MSDN here 。我真的很想使用 InverseNormalDistribution(double Z) 函数。问题是构造函数是内部的,所以我无法以我所知道的任何方式访问这些函数。
有什么方法可以访问这个命名空间中的静态函数,还是我必须找到其他解决方案?
最佳答案
您可能可以使用反射,这样的事情应该这样做:
var statisticFormula =
(StatisticFormula) typeof(StatisticFormula).GetConstructor(
BindingFlags.NonPublic | BindingFlags.Instance,
null, Type.EmptyTypes, null).Invoke(null);
但这可能是更好的方法:
var chart = new Chart();
var value = chart.DataManipulator.Statistics.InverseNormalDistribution(.15)
关于c# - 使用 .Net 的 StatisticFormula 库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11459066/