Is there a C# library that will perform the Excel NORMINV function?

后端 未结 7 1622
野的像风
野的像风 2021-01-04 10:16

I\'m running some Monte Carlo simulations and making extensive use of the Excel function NORM.INV using Office Interrop. This functions takes three arguments (probability, a

7条回答
  •  走了就别回头了
    2021-01-04 10:56

    add a chart control

    double result = Chart1.DataManipulator.Statistics.InverseNormalDistribution(probability);

    probability eg : 0.9, 0.4

提交回复
热议问题