代码搜索:dataIn

找到约 2,888 项符合「dataIn」的源代码

代码结果 2,888
www.eeworm.com/read/281861/9128772

vhd fifo8_8.vhd

Library Ieee; Use Ieee.Std_Logic_1164.All; Use Ieee.Std_Logic_ARITH.All; USE Ieee.Std_Logic_UNSIGNED.All; Entity Fifo8_8 Is Generic(M: Positive := 8; N: Positive := 8); Port(
www.eeworm.com/read/181930/9225224

txt readme.txt

1. compile: mpicc dwt.c -o dwt 2. run: mpirun -np 4 dwt 3. result: One dimensional wavelet transform's input data from file dataIn.txt h[] : -1 0 1 2 g[] : 1 1 0 3 c[] : 1 4 2 5
www.eeworm.com/read/177025/9474160

c main_partstest.c

/*****************************************************************************/ /* FIle Name : main.c */ /* Description : WLAN FEC scrambler fo
www.eeworm.com/read/177025/9474165

c scrambler.c

/*****************************************************************************/ /* FIle Name : scrambler.c */ /* Description : WLAN FEC scrambler fo
www.eeworm.com/read/177025/9474174

c depuncturing.c

/*****************************************************************************/ /* FIle Name : depuncturing.c */ /* Description : WLAN FEC depuncturing
www.eeworm.com/read/170248/9813472

txt readme.txt

请运行程序,并在程序所在文件夹下面创建文本文件:<mark>datain</mark>.txt和paramOut.txt,文件的详细说明见下面。程序的运行没有可视的界面,运行完毕之后会在该文件夹下面产生center.txt和matrix.txt两个文件,其中center.txt为聚类的中心,matrix.txt为隶属度矩阵。在运行本程序之前,先参考一下FCM聚类算法介绍.doc 输入文件: <mark>datain</mark>.txt ...
www.eeworm.com/read/364280/9914232

v segmain.v

module segmain ( clk, rst, datain, dataout, ledcom ); input clk; input rst; input [15:0] datain; output [3:0] dataout; output [3:0] ledcom; reg [3:0] led
www.eeworm.com/read/364280/9915873

v segmain.v

module segmain ( clk, rst, datain, dataout, ledcom ); input clk; input rst; input [15:0] datain; output [3:0] dataout; output [3:0] ledcom; reg [3:0] led
www.eeworm.com/read/168320/9920000

vhd cal.vhd

library ieee; use ieee.std_logic_1164.all; ENTITY cal IS PORT ( clk,reset,enable: in std_logic; DATAIN: IN STD_LOGIC_vector(3 downto 0); Q :
www.eeworm.com/read/166954/9988216

txt 汉明纠错吗编码器.txt

-- Hamming Encoder -- A 4-bit Hamming Code encoder using concurrent assignments. -- The output vector is connected to the individual parity bits using an aggregate assignment. -- download from: w