简体   繁体   中英

gauss error function in vba (excel)

Is there an existing function or open source lib to create an gaussian error function in VBA (in Excel)? Note that this is a mathematical function and has nothing to do with failure handling!

The Gauss error function, which is the integral of the normal distribution, is supported in Excel 2013 by the worksheet function =GAUSS()

From VBA you would access it in the usual fashion

Dim x as Double
Dim y as Double
y = Application.WorksheetFunction.Gauss(x)

. .

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM