• 大小: 12.87M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-13
  • 语言: 其他
  • 标签: 其他  

资源简介

QPSK_PROJECT.rar

资源截图

代码片段和文件信息

%% ================================================================================
%% Legal Notice: Copyright (C) 1991-2008 Altera Corporation
%% Any megafunction design and related net list (encrypted or decrypted)
%% support information device programming or simulation file and any other
%% associated documentation or information provided by Altera or a partner
%% under Altera‘s Megafunction Partnership Program may be used only to
%% program PLD devices (but not masked PLD devices) from Altera.  Any other
%% use of such megafunction design net list support information device
%% programming or simulation file or any other related documentation or
%% information is prohibited for any other purpose including but not
%% limited to modification reverse engineering de-compiling or use with
%% any other silicon devices unless such use is explicitly licensed under
%% a separate agreement with Altera or a megafunction partner.  title to
%% the intellectual property including patents copyrights trademarks
%% trade secrets or maskworks embodied in any such megafunction design
%% net list support information device programming or simulation file or
%% any other related documentation or information provided by Altera or a
%% megafunction partner remains with Altera the megafunction partner or
%% their respective licensors.  No other licenses including any licenses
%% needed under any third party‘s intellectual property are provided herein.
%% ================================================================================
%%
%% Generated by: CIC 13.1 Build 162 October 2013
%% Generated on: 2014-4-28 21:09:15
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% cic_0_fir_comp_coeff genearats CIC compensation filter coefficients
% using frequency sampling method.
%
%    cic_0_fir_comp_coeff(L Fs Fc plot is_fxp B) calculates compensation
%    filter coefficients and saves the coefficients to a file.
%
%    L      - FIR filter length (= number of taps = number of coefficients)
%    Fs     - FIR filter sample rate in Hz before interpolation
%    Fc     - FIR filter cutoff frequency in Hz
%    plot   - True or false to draw filter responses graphically
%    is_fxp - Indicating if the coefficients should be saved as fixed point or floating point numbers
%    B      - Number of bits to represent the coefficients if is_fxp is true
%
%    Examples:
%    cic_0_fir_comp_coeff(3180e64e6truetrue16);
%    cic_0_fir_comp_coeff(3180e64e6truefalse)


function cic_0_fir_comp_coeff(L Fs Fc plot is_fxp B)
try
% Validate number of input arguments
error(nargchk(0 6 nargin));

%%%%%% CIC filter parameters %%%%%%
R = 16; %% Interpolation factor
M = 2; %% Differential Delay
N = 5; %% Number of Stages

%%%%%% User Parameters %%%%%%
% Check if Signal Processing Toolbox is in the Matlab installation
if (isempty(which(‘fir2‘)))
error(‘Matlab Signal Processing Toolbox isn‘‘t installed on yo

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     274054  2014-04-01 21:18  QPSK_FPGA\ModDemod\an455.pdf

     文件       1069  2014-05-11 08:32  QPSK_FPGA\ModDemod\bypass_pulseshape_filter.v

     文件        245  2014-05-11 06:49  QPSK_FPGA\ModDemod\bypass_pulseshape_filter.v.bak

     文件      17712  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_avalon_streaming_block_sink_cic_131.vhd

     文件      19384  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_avalon_streaming_block_sink_fftfprvs_cic_131.vhd

     文件       7912  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_avalon_streaming_block_source_cic_131.vhd

     文件       3856  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_avalon_streaming_controller_cic_131.vhd

     文件       6912  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_avalon_streaming_controller_pe_cic_131.vhd

     文件      28208  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_avalon_streaming_sink_cic_131.vhd

     文件      23224  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_avalon_streaming_source_cic_131.vhd

     文件       4384  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_cic_lib_pkg_cic_131.vhd

     文件      11640  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_delay_cic_131.vhd

     文件       4912  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_differentiator_cic_131.vhd

     文件       3328  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_downsample_cic_131.vhd

     文件       6856  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_fastaddsub_cic_131.vhd

     文件       3256  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_fastadd_cic_131.vhd

     文件       7736  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_integrator_cic_131.vhd

     文件      22872  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_lib_pkg_cic_131.vhd

     文件      11728  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_math_pkg_cic_131.vhd

     文件      13400  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_pipelined_adder_cic_131.vhd

     文件      11952  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_roundsat_cic_131.vhd

     文件       3784  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_text_pkg_cic_131.vhd

     文件       2000  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_upsample_cic_131.vhd

     文件       3328  2014-05-25 09:39  QPSK_FPGA\ModDemod\cic-library\auk_dspip_variable_downsample_cic_131.vhd

     文件       3566  2014-03-30 12:25  QPSK_FPGA\ModDemod\cic.bsf

     文件       4179  2014-03-30 12:25  QPSK_FPGA\ModDemod\cic.html

     文件       6270  2014-03-30 12:24  QPSK_FPGA\ModDemod\cic.log

     文件       5796  2014-03-30 12:25  QPSK_FPGA\ModDemod\cic.qip

     文件       8068  2014-03-30 12:25  QPSK_FPGA\ModDemod\cic.v

     文件       3568  2014-04-28 21:09  QPSK_FPGA\ModDemod\cic_0.bsf

............此处省略853个文件信息

评论

共有 条评论