代码搜索:光子计数
找到约 7,260 项符合「光子计数」的源代码
代码结果 7,260
www.eeworm.com/read/282641/9078250
+
本系统计数器采用文本记录方法。
chy.cnt 记录访问总数
dchy.cnt 记录当日来访人数
在正式使用前,你可以清零,以便记录。
www.eeworm.com/read/374723/9387913
m randsel.m
%退避计数器达到最大1000时,重置退避计数器
function y = RandSel(CW)
y = 0;
while y == 0
y = floor(rand * CW);
end
www.eeworm.com/read/192530/8376044
txt 0-9999999计数器.txt
//李伟于9月2号下午修改通过
#include
#define uchar unsigned char
#define uint unsigned int
const uchar TABLE[ ] ={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
www.eeworm.com/read/291453/8417535
vhd 各种功能的计数器.vhd
-- MAX+plus II VHDL Example
-- Efficient Counter Inference
-- Copyright (c) 1994 Altera Corporation
-- download from:www.pld.com.cn & www.fpga.com.cn
Library IEEE ;
use IEEE.std_logic_1164.all
www.eeworm.com/read/433021/8551801
vhd 各种功能的计数器.vhd
Library IEEE ;
use IEEE.std_logic_1164.all ;
use IEEE.std_logic_arith.all ;
ENTITY counters IS
PORT
(
d : IN INTEGER RANGE 0 TO 255;
clk : IN BIT;
clear : IN BIT;
ld : I
www.eeworm.com/read/433021/8551820
vhd 可变步长加减计数器.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity counter is
port (data :in std_logic_vector (7 downto 0);
a,clk,clr,en :in std_logic;
mm :out std_
www.eeworm.com/read/432404/8606810
txt 统计数字1.txt
#include
int Num[10] = {1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000};//Num[i]表示i位数的个数,例如:Num[2],表示00-99的总个数
int count[10];
int main()
{
int i, j, k;