代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/332108/12778176
cont fishing-reg.cont
Problem dimension
1
Initial and final value for homotopic parameter
0.0 1.0
Tolerance, max iterations and iterations output frequency
1d-6 50 10
Debug and verbose flags
0 1
www.eeworm.com/read/332108/12778198
cont fishing-arc.cont
Problem dimension
7
Initial and final value for homotopic parameter
1.0 1.0
Tolerance, max iterations and iterations output frequency
1d-5 100 10
Debug and verbose flags
0 1
www.eeworm.com/read/332108/12778215
cont g3d-reg.cont
Problem dimension
8
Initial and final value for homotopic parameter
0.0 1.0
Tolerance, max iterations and iterations output frequency
1d-3 100 10
Debug and verbose flags
0 0
www.eeworm.com/read/332108/12778229
cont g3d-arc.cont
Problem dimension
42
Initial and final value for homotopic parameter
1. 1.
Tolerance, max iterations and iterations output frequency
1d-5 66 1
Debug and verbose flags
0 1
www.eeworm.com/read/332108/12778232
cont g3d-atm.cont
Problem dimension
8
Initial and final value for homotopic parameter
0.0 1.0
Tolerance, max iterations and iterations output frequency
1d-6 666 1
Debug and verbose flags
0 0
www.eeworm.com/read/144399/12797354
m tablenng.m
function tablenNG(w,h,b,t0)
% tablenNG Use Newton's method to find dimensions of picnic table legs
% Variable input arguments are passed through to newtonNG
%
% Synopsis: tablenNG(w,b,
www.eeworm.com/read/244507/12859198
v loop3.v
module loop3;
integer i;
initial begin
i=0;
repeat(4)
begin
$display ("i=%h",i);
i=i+1;
end
end
endmodule
www.eeworm.com/read/244507/12859456
v adder_tp.v
`timescale 1ns/1ns
`include "adder4.v"
module adder_tp;
reg[3:0] a,b;
reg cin;
wire[3:0] sum;
wire cout;
integer i,j;
adder4 adder(sum,cout,a,b,cin);
always #5 cin=~cin;
initial
begin