代码搜索结果
找到约 10,000 项符合
8 的代码
exa8_8.m
% exa080501_sigdec.m ,for example 8.5.1
% to dectect signal from noise
clear;
% 产生数据
N=128;
n=0:N-1;
f1=0.10;
f2=0.19;
A1=1;
A2=3;
s1=A1*cos(2*pi*f1*n);
s2=A2*cos(2*pi*f2*n);
s=s1+s2;
v8_8.vhd
library ieee;
use ieee.std_logic_1164.all;
entity V8_8 is
port(D : in std_logic;
Q : out std_logic := '0';
Rst : in std_logic;
Clk : in std_logic);
end V8_
m8_8.do
vsim work.CFG_DFF
add wave *
force rst 1
force clk 0 0, 1 25 -r 50
force d 1
run 100
force rst 0
run 53
force rst 1
run 50
force d 0
run 50
example8_8.m
function y=example8_8(x)
y=(x^3+x)/(x^4-x^2+1);
fifo_8_8.qsf
# Copyright (C) 1991-2004 Altera Corporation
# Any megafunction design, and related netlist (encrypted or decrypted),
# support information, device programming or simulation file, and any oth
fifo_8_8.qpf
# Copyright (C) 1991-2004 Altera Corporation
# Any megafunction design, and related netlist (encrypted or decrypted),
# support information, device programming or simulation file, and any oth
fifo_8_8.v
module FIFO_8_8(
clock,reset,
read,write,fifo_in,fifo_out,
fifo_empty,fifo_half,fifo_full
);
input clock,res
fifo_8_8.qws
[ProjectWorkspace]
ptn_Child1=Frames
ptn_Child2=Workmode
ptn_Child3=ActionPoints
[ProjectWorkspace.Frames]
ptn_Child1=ChildFrames
[ProjectWorkspace.Frames.ChildFrames]
ptn_Child1=Document-0
[P
ch8_8.cpp
//*********************
//** ch8_8.cpp **
//*********************
#include
#include
void main()
{
int arraysize; //元素个数
int *array;
cout