代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/132649/5911372
def algo_linkout.def
; algo_linkout.def : Declares the module parameters for the DLL.
LIBRARY "algo_linkout"
DESCRIPTION 'algo_linkout Windows Dynamic Link Library'
EXPORTS
; Explicit exports can go here
www.eeworm.com/read/132649/5911402
def algo_align.def
; algo_align.def : Declares the module parameters for the DLL.
LIBRARY "algo_align"
DESCRIPTION 'algo_align Windows Dynamic Link Library'
EXPORTS
; Explicit exports can go here
www.eeworm.com/read/132649/5911410
def gui_core.def
; gui_core.def : Declares the module parameters for the DLL.
LIBRARY "gui_core"
DESCRIPTION 'gui_core Windows Dynamic Link Library'
EXPORTS
; Explicit exports can go here
www.eeworm.com/read/132649/5911421
def gui_graph.def
; gui_graph.def : Declares the module parameters for the DLL.
LIBRARY "gui_graph"
DESCRIPTION 'gui_graph Windows Dynamic Link Library'
EXPORTS
; Explicit exports can go here
www.eeworm.com/read/132649/5911426
def gui_dialogs.def
; gui_dialogs.def : Declares the module parameters for the DLL.
LIBRARY "gui_dialogs"
DESCRIPTION 'gui_dialogs Windows Dynamic Link Library'
EXPORTS
; Explicit exports can go here
www.eeworm.com/read/132649/5911433
def gui_utils.def
; gui_utils.def : Declares the module parameters for the DLL.
LIBRARY "gui_utils"
DESCRIPTION 'gui_utils Windows Dynamic Link Library'
EXPORTS
; Explicit exports can go here
www.eeworm.com/read/130875/5949755
¦
Attribute VB_Name = "modParameter"
'二项式分布
Option Explicit
'数组A保存计算结果
Public A() As Double
'n:试验次数
'p:一次试验中事件A出现的概率
'x:n次试验中事件A出现的次数
Public n As Integer, p As Single, x As Integer
www.eeworm.com/read/130875/5949762
i
Attribute VB_Name = "modCall"
Option Explicit
'调用计算正态分布函数的子程序
Sub Main()
Dim I, P
For I = 1 To 5
Norm I, P '调用计算正态分布函数的子程序
Debug.Print "正态偏离点u=", I, "下侧概率p=", P
www.eeworm.com/read/130875/5949773
i
Attribute VB_Name = "modCall"
Option Explicit
'调用计算正态分布函数的子程序
Sub Main()
Dim x, F
For x = 1 To 5
Norm x, F '调用计算正态分布函数的子程序
Debug.Print "正态偏离点 x =", x, "下侧概率 F =", F
www.eeworm.com/read/130875/5949799
f
Attribute VB_Name = "modCall"
Option Explicit
'调用计算F分布分位数的子程序
Sub Main()
Dim I As Integer, FF As Double
Dim sngF As Single
For I = 1 To 5
PF_DIST 1, I, 0.05, FF '调用计算F分