代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/131315/5944096
p shoemake.p
program test(input, output);
type
alpha = array[1..10] of char;
lineType = array[1..80] of char;
procedure test1(name : alpha); {If this parameter is integer, the pro-
gram will not b
www.eeworm.com/read/131315/5944267
p varnt.p
(*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permi
www.eeworm.com/read/131315/5944284
p bug.p
(*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permi
www.eeworm.com/read/131315/5944285
p call.p
(*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permi
www.eeworm.com/read/130875/5949667
ͭ
Attribute VB_Name = "modMethod"
'逐步回归
Option Explicit
'xy(1 To n, 1 To m+1):观测数据,已知,n是观测次数,m是自变量个数
'F1:指定的F临界值,用于引入,已知
'F2:指定的F临界值,用于剔出,已知
' 要求F1>=F2。如果F1=F2=0,则引入除线性相关外的全部变量
'F:F检验值,计算结果
'
www.eeworm.com/read/130875/5949946
-
Attribute VB_Name = "modMethod"
Option Explicit
'双因素方差分析
'x:试验数据,已知
'FA:列因素的F检验值,计算结果
'FB:行因素的F检验值,计算结果
Public Sub DoubleE(x() As Double, FA As Double, FB As Double)
Dim T As Double, T2 As
www.eeworm.com/read/130875/5949986
+
Attribute VB_Name = "modMethod"
'描述统计的计算方法
Option Explicit
'数组排序的希尔方法
'按升序
'Y():被排序的数组
Public Sub Sort_Shell(Y() As Double)
Dim Temp As Double, Gap As Integer
Dim I As Integer, K As In
www.eeworm.com/read/130875/5950068
¦Ȭ
Attribute VB_Name = "modMethod"
'二元多项式逐步回归
Option Explicit
'xMy(1 To n, 1 To m):处理后数据,n是观测次数,m是多项式的项数
'F1:指定的F临界值,用于引入
'F2:指定的F临界值,用于剔出
' 要求F1>=F2。如果F1=F2=0,则引入除线性相关外的全部变量
'F:F检验值,计算结果
'L:选
www.eeworm.com/read/130875/5950085
ø-
Attribute VB_Name = "modMethod"
'趋势面分析
Option Explicit
'计算X和Y的乘幂
Public Sub Power(X, Y, I0, E, F)
Dim a As Integer, C As Integer
a = 0
SS1:
If ((a + 1) * (a + 2)) / 2 >= I0 Then
www.eeworm.com/read/130875/5950123
-
Attribute VB_Name = "modMethod"
'两组判别
Option Explicit
'全主元高斯-约当消去法求逆矩阵
'A(1 To m, 1 To m):开始存放欲求逆的矩阵,最终存求逆的结果矩阵,m是自变量个数
Public Sub Invert(a() As Double)
Dim n As Integer, ep As Double
D