是否有执行 Excel NORMINV 函数的 C# 库?

Is there a C# library that will perform the Excel NORMINV function?(是否有执行 Excel NORMINV 函数的 C# 库?)
本文介绍了是否有执行 Excel NORMINV 函数的 C# 库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在运行一些蒙特卡罗模拟并广泛使用 Excel 函数NORM.INV 使用 Office Interrop.此函数采用三个参数(概率、平均值、标准差)并返回累积分布的倒数.

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, average, standard deviation) and returns the inverse of the cumulative distribution.

我想将我的代码移动到网络应用程序中,但这需要在服务器上安装 Excel.有谁知道与 NORM.INV 具有等效功能的 C# 统计库吗?

I'd like to move my code into a web app, but that will require installing Excel on the server. Does anybody know of a C# statistics library that has an equivalent function to NORM.INV?

推荐答案

Meta.Numerics 正是您要寻找的.这是使用该库执行此操作的代码:

Meta.Numerics has exactly what you are looking for. Here is the code to do it using that library:

Distribution n = new NormalDistribution(mean, standardDeviation);
double x = n.InverseLeftProbability(probability);

如果您这样做是为了生成法线偏差,GetRandomValue 函数会更快.

If you are doing this in order to generate normal deviates, the GetRandomValue function is even faster.

这篇关于是否有执行 Excel NORMINV 函数的 C# 库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)