代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/149715/12355384
pas percent.pas
(***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in c
www.eeworm.com/read/149715/12355393
pas extcap0.pas
(***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in c
www.eeworm.com/read/336975/12404092
m rungekutta.m
function PX =RungeKutta(tf,X0,T)
% anatomise the differential equation and get the discrete state equation
% which is noliner
% 11-24-2007
% Output:
% PX: solution of the differen
www.eeworm.com/read/250472/12404505
h s3c2410x_dma.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you lic
www.eeworm.com/read/234831/14095952
bas module1.bas
Attribute VB_Name = "Module1"
Public cs As Connection
Public rstu As Recordset
Public ruser As Recordset
Public rbj As Recordset
Public rpwd As Recordset
Public Loged As Integer
Public i
www.eeworm.com/read/234003/14126141
c 例7-7.c
#include "reg51.h"
#define ON 1
#define OFF 0
sbit Lamp1=P0^0;
sbit Lamp2=P0^1;
sbit Lamp3=P0^0;
sbit Lamp4=P0^1;
sbit Lamp5=P0^0;
sbit Lamp6=P0^1;
sbit Lamp7=P0^0;
sbit Lamp8=P0^1;
www.eeworm.com/read/131672/14133488
cpp fenzhi.cpp
#include
#include
#include
#include
char a[800][800];
void initial(int l,int r,int u,int d)
{
if(l==r || u==d)
{
a[u][l]='X';
return;
}
int
www.eeworm.com/read/233704/14142731
bak ex4.v.bak
module ex4;
reg a,b,c;
initial
fork
a=0;b=1;c=0;
#5 c
www.eeworm.com/read/233704/14142820
bak ex1.v.bak
module ex1;
reg[3:0] a,b;
initial
begin
a=4'b0011;b=4'b1001;
$display("%d %d",a,b);
$display("%b,%b",a,b);
$display("a=%h b=%h",a,b);
$display("a=%o,b=%o",a,b);
$display("a is equal to %o,