代码搜索:磁场分布
找到约 3,825 项符合「磁场分布」的源代码
代码结果 3,825
www.eeworm.com/read/154133/5640333
bas f分布分位数m1.bas
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分
www.eeworm.com/read/154133/5640351
bas 正态分布图m1.bas
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/154133/5640354
frm 正态分布图f1.frm
VERSION 5.00
Begin VB.Form frmPicture
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "正态分布概率密度图"
ClientHeight = 5595
ClientLeft = 60
www.eeworm.com/read/154133/5640359
bas 正态分布分位数m1.bas
Attribute VB_Name = "modCall"
Option Explicit
'调用求分位数的过程
Sub main()
Dim x As Double, dblI As Double
For dblI = 0.05 To 0.45 Step 0.05
PNorm dblI, x
Debug.Print "上侧概率="
www.eeworm.com/read/154133/5640360
vbp 二项式分布v.vbp
Type=Exe
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINNT\System32\stdole2.tlb#OLE Automation
Module=modMethod; 二项式分布M.bas
Form=二项式分布F.frm
Module=modParameter; 二项式分布M1.bas
Form=
www.eeworm.com/read/154133/5640363
bas 二项式分布m.bas
Attribute VB_Name = "modMethod"
Option Explicit
'计算符合二项式分布事件的概率
'n:试验次数
'p:一次试验中事件A出现的概率
'x:n次试验中事件A出现的次数
'Bin:事件A出现x次的概率
Public Sub Bino(n As Integer, p As Single, x As Integer, bin As Double)
www.eeworm.com/read/154133/5640365
vbw 二项式分布v.vbw
modMethod = 39, 33, 685, 497,
frmInput = 48, -6, 556, 380, C, 22, 29, 623, 501, C
modParameter = 44, 58, 709, 391, C
frmOutput = 111, 41, 721, 461, C, 62, -18, 653, 633, C
www.eeworm.com/read/154133/5640366
frm 二项式分布f.frm
VERSION 5.00
Begin VB.Form frmInput
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "二项式分布"
ClientHeight = 2460
ClientLeft = 60
C
www.eeworm.com/read/154133/5640511
bas 分布假设检验m2.bas
Attribute VB_Name = "modMethod"
'分布假设检验
Option Explicit
'正态分布检验时合并频数小于5的区间
'x0是区间的左端点
'x1是区间的右端点
'y是区间的频数
'L合并的次数
Public Sub Merge(x0() As Double, x1() As Double, _
y() As Dou
www.eeworm.com/read/154133/5640512
bas 分布假设检验m1.bas
Attribute VB_Name = "modParameter"
'分布假设检验
Option Explicit
Public intRow As Integer '行数
Public intRowAll As Integer '总行数
Public intCol As Integer '列数
Pu