代码搜索:磁场分布
找到约 3,825 项符合「磁场分布」的源代码
代码结果 3,825
www.eeworm.com/read/164520/5489449
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/164520/5489450
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/164520/5489453
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/164520/5489455
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/164520/5489456
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/164520/5489650
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/164520/5489651
bas 分布假设检验m1.bas
Attribute VB_Name = "modParameter"
'分布假设检验
Option Explicit
Public intRow As Integer '行数
Public intRowAll As Integer '总行数
Public intCol As Integer '列数
Pu
www.eeworm.com/read/164520/5489652
frm 分布假设检验f1.frm
VERSION 5.00
Begin VB.Form frmFileName
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "分布假设检验"
ClientHeight = 4065
ClientLeft = 60
www.eeworm.com/read/164520/5489653
frm 分布假设检验f2.frm
VERSION 5.00
Begin VB.Form frmCalculate
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "分布假设检验"
ClientHeight = 3960
ClientLeft = 60
www.eeworm.com/read/154133/5640310
bas t分布分位数m1.bas
Attribute VB_Name = "modCall"
Option Explicit
'调用计算t分布分位数的子程序
Sub Main()
Dim I As Integer, TT As Double, p As Double, d As Double
Dim sngTT As Single
For I = 1 To 20
PT_