资源简介
基于DDS的三相正弦波发生器 相位360度可调

代码片段和文件信息
% function [y exp_out] = fft_model(xNINVERSE)
%
% calculates the complex block-floating point FFT/IFFT of length N of a
% complex input vector x
%
% Inputs: x : Input complex vector of length B*N where B is
% the number of blocks over which the length-N FFT is to
% be applied. If the length of the vector is not
% an integral multiple of N zeros are
% appended to the input sequence appropriately.
% N : Transform Length
% INVERSE : FFT direction
% 0 => FFT
% 1 => IFFT
%
% Outputs y : The transform-domain complex vector output
% exp_out : Block exponent value
%
% 2001-2008 Altera Corporation All Rights Reserved
%
% Automatically Generated: FFT MegaCore Function 8.1 Build 163 November 2008
%
function [y exp_out] = fft_model(xNINVERSE)
addpath ‘c:/altera/81/ip/altera/fft/lib//ip_toolbench//../‘
% Parameterization Space
THROUGHPUT=4;
ARCH=0;
DATA_PREC=18;
TWIDDLE_PREC=18;
input_vector_length = length(x);
number_of_blocks = ceil(input_vector_length/N);
% Zero-stuff last block if necessary
x = [x zeros(1number_of_blocks * N - input_vector_length)];
y=[];
exp_out=[];
for i=1:number_of_blocks
rin = real(x((i-1)*N + 1: i*N));
iin = imag(x((i-1)*N + 1: i*N));
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4582 2009-08-19 10:20 beyond\accrom.mif
文件 5896 2009-08-22 17:29 beyond\accrom8.mif
文件 1793 2009-08-22 19:55 beyond\adder32b.bsf
文件 612 2009-08-23 12:32 beyond\adder32b.vhd
文件 612 2009-08-22 22:35 beyond\adder32b.vhd.bak
文件 7449 2009-08-23 16:12 beyond\beyond.asm.rpt
文件 27844 2009-08-23 16:11 beyond\beyond.bdf
文件 26 2009-08-23 16:27 beyond\beyond.done
文件 239 2009-08-23 18:16 beyond\beyond.dpf
文件 178072 2009-08-23 16:12 beyond\beyond.fit.rpt
文件 513 2009-08-23 16:12 beyond\beyond.fit.smsg
文件 602 2009-08-23 16:12 beyond\beyond.fit.summary
文件 9874 2009-08-23 16:12 beyond\beyond.flow.rpt
文件 13066 2009-08-23 16:12 beyond\beyond.jdi
文件 103080 2009-08-23 16:12 beyond\beyond.map.rpt
文件 463 2009-08-23 16:12 beyond\beyond.map.summary
文件 20315 2009-08-23 16:12 beyond\beyond.pin
文件 131258 2009-08-23 16:12 beyond\beyond.pof
文件 908 2009-08-22 15:11 beyond\beyond.qpf
文件 5822 2009-09-01 15:33 beyond\beyond.qsf
文件 841 2009-09-01 15:33 beyond\beyond.qws
文件 41228122 2009-08-23 16:27 beyond\beyond.sim.rpt
文件 151066 2009-08-23 16:12 beyond\beyond.sof
文件 324370 2009-08-23 16:12 beyond\beyond.tan.rpt
文件 3456 2009-08-23 16:12 beyond\beyond.tan.summary
文件 17740 2009-08-23 16:26 beyond\beyond.vwf
文件 2114 2009-08-23 09:11 beyond\byfpq.bsf
文件 379 2009-08-23 09:11 beyond\byfpq.vhd
文件 425 2009-08-23 09:06 beyond\byfpq.vhd.bak
文件 2850 2009-08-22 20:05 beyond\db\altsyncram_9491.tdf
............此处省略364个文件信息
相关资源
- FPGA实现PID.v
- 基于FPGA的sdi视频传输工程(k7_sdi_rx
- FPGA彩条显示
- Xilinx-FPGA-引脚功能详细介绍.doc
- 基于xilinx FPGA的PCIe设计实战
- 基于PCIe的FPGA动态配置设计与实现
- 为什么工程师要掌握FPGA开发知识?
- 数字频率合成dds正弦波基于FPGA的DDS产
- Verilog FPGA UART串口控制器
- gmsk调制在FPGA上实现
- 一个简单的verilog编写的DMA IP CORE,和
- FPGA在步进电机驱动上的应用实例及代
- fpga实现频率测量
- FPGA开发-ChipScope教程
- 红外循迹小车VHDL程序
- 基于FPGA的USB接口设计
- DE2模拟的交通红绿灯
- 一种抗SEU存储器电路的FPGA设计
- Cyclone 10LP Remote Update Intel FPGA IP 官方工
- nRF24L01无线模块在单片机与FPGA上的应
- 基于FPGA多协议转换网关设计
- fpga数字钟
- FPGA按键消抖
- 具有可编程环路补偿功能高密度电源
- FPGA系统中有源电容放电电路设计需注
- 玩转Altera FPGA:基于PLL分频计数的LE
- 二院型号FPGA 硬件描述语言编程准则
- ETC中FM0解码器的设计
- 基于FPGA和万兆网的GigE Vison设计方案
- Xilinx FPGA底层资源架构与设计规范
评论
共有 条评论