代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/233704/14142856
bak counter1.v.bak
module counter1;
integer count;
initial
for(count=0;count
www.eeworm.com/read/230800/14273765
c mxulie.c
#include
#include
sbit P0_0=P0^0; //m序列输出
sbit P1_0=P1^0; //同步信号输出
sbit P2_0=P2^0; //200us
sbit P2_3=P2^3; //2ms
sbit P2_6=P2^6; //20ms
sbit P3_0=P3^0; //31位m序列
s
www.eeworm.com/read/230800/14273785
lst mxulie.lst
C51 COMPILER V7.50 MXULIE 08/14/2007 18:57:46 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE MXULIE
OBJECT MODULE PLACED IN
www.eeworm.com/read/229740/14318211
m demo3_initialfromthresh.m
% This Matlab file demomstrates a variational level set method that improves the original method in Li et al's paper
% "Level Set Evolution Without Re-initialization: A New Variational Formulation
www.eeworm.com/read/228696/14369100
c main.c
#include /* special function register declarations */
/* for the intended 8051 derivative */
#include
www.eeworm.com/read/227960/14405265
m gtm_ri.m
function [W, beta] = gtm_ri(T, FI)
% Returns an initial random weight matrix.
%
% Generates a weight matrix with the bias weights set to
% map to the mean of the target distribution and remaini
www.eeworm.com/read/227822/14410661
changelog
version 0.9.0:
- Support for relative paths in backing files for disk images
- Async file I/O API
- New qcow2 disk image format
- Support of multiple VM snapshots
- Linux: specific host CDR
www.eeworm.com/read/122829/14666419
pw lids.pw
# generated by "lidsadm -P". You must initial this password before reboot
www.eeworm.com/read/117459/14919653
cpp joseph_linklist.cpp
/*
一、需求分析
1、 本程序利用单向循环链表模拟了约瑟夫(Joseph)问题;
2、 本程序采用人机对话方式完成整个问题,按照提示输入参加的人数(n),每个人的密码(steps),
以及第一次的报数次数(m);然后对该人按照输入的顺序进行标号,当程序执行完输出出列人的
编号。
二、调试过程
刚开始使用了模板来写,但是后来一想没有这个必要就省去了,在用malloc()函数 ...