代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/466346/7034117
bas lemodule.bas
Attribute VB_Name = "LEModule"
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' 模块名:LEModule.bas
' 功能: 求解线性方程组
'''''''''''''''''''''''''''''''''''''''
www.eeworm.com/read/466346/7034156
bas matrixmodule.bas
Attribute VB_Name = "MatrixModule"
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' 模块名:MatrixModule.bas
' 功能: 矩阵运算
''''''''''''''''''''''''''''''''''
www.eeworm.com/read/466346/7034209
bas matrixmodule.bas
Attribute VB_Name = "MatrixModule"
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' 模块名:MatrixModule.bas
' 功能: 矩阵运算
''''''''''''''''''''''''''''''''''
www.eeworm.com/read/450999/7473952
pas rograff7.pas
var a,b:array[1..50,1..50] of integer;
k,x,y,c,m,n,i,j:integer;
f:text;
ok:boolean;
begin
assign(f,'graf.txt ');reset(f);
readln(f,n,m);
c:=0;
for k:=1 to m do begin
www.eeworm.com/read/450756/7477014
txt file.txt
Program example ;
var j,m,n:integer;
begin
j:=1;
m:=3;
n:=j+m;
If n>3 then
j:=j-1;
www.eeworm.com/read/441402/7670964
me l_read.me
L_READ.ME
ASCII-file accompanying the MATLAB M-files for the LAMBDA-method
for GPS double difference ambiguity resolution.
Development of the LAMBDA method
--------------------------------
The
www.eeworm.com/read/195610/8138774
bas initpop.bas
Attribute VB_Name = "Module1"
Option Explicit
Public kd(1 To 8) As Integer
Type PP
kdchrom(1 To 192) As Integer
kjP(1 To 192) As Integer
fitness As Double
AA(0 To 23, 1 To 8) As Integer
AP(0 T
www.eeworm.com/read/140912/13052880
bas 多项式回归m2.bas
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
www.eeworm.com/read/140912/13052950
bas 多元线性m2.bas
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