CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - fftshift

搜索资源列表

  1. MatrixOper

    0下载:
  2. 矩阵运算处理,包括FFT,IFFT,FFTSHIFT等
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2714
    • 提供者:yz
  1. fftshift_and_triang

    0下载:
  2. 用C++实现了MATLAB中fftshift及triang函数功能,代码是实现此二功能的函数
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:5412
    • 提供者:李明
  1. change

    0下载:
  2. matlab中应用小波变换的几个程序 包括cwt,dwt,fft,fftshift的使用 版本为matlab7.0
  3. 所属分类:波变换

    • 发布日期:2008-10-13
    • 文件大小:2377
    • 提供者:杨青禾
  1. chap04

    0下载:
  2. ch4_1_4:对f进行补零(区域大小为256×256),而后进行二维快速傅立叶变换(§4.1.2) ch4_1_5:使变换结果的零频率分量位于中心,调用函数fftshift(§4.1.2) ch4_1_6:利用函数ifft2对乘积进行傅立叶反变换(§4.1.3) ch4_1_7:得到在图像text.png中对应字母“a”的定位结果(§4.1.3) ch4_2_1:对一幅图像进行离散余弦变换(§4.2.1) ch4_2_2:JPEG图像压缩(§4.2.2) ch4_3_1
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:4208
    • 提供者:sherman1944
  1. cgh

    0下载:
  2. 计算全息close all clc clear A=zeros(64) A(15:20,20:40)=1 A(15:50,20:25)=1 A(45:50,20:40)=1 A(30:34,20:35)=1 % ppp=exp(rand(64)*pi*2*i) A=A.*ppp % Author s email: zjliu2001@163.com figure imshow(abs(A),[]) Fa=fft2(fftshift(A)) Fs=fftshi
  3. 所属分类:source in ebook

    • 发布日期:2017-03-23
    • 文件大小:3640
    • 提供者:ccfu
  1. chap04

    0下载:
  2. ch4_1_1:矩形连续函数的傅立叶变换(§4.1.1) ch4_1_2:构建一个矩形函数(§4.1.2) ch4_1_3:对f进行二维快速傅立叶变换(§4.1.2) ch4_1_4:对f进行补零(区域大小为256×256),而后进行二维快速傅立叶变换(§4.1.2) ch4_1_5:使变换结果的零频率分量位于中心,调用函数fftshift(§4.1.2) -ch4_1_1: rectangular continuous function of the Fourier tra
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:3879
    • 提供者:汤跃峰
  1. chap04

    0下载:
  2. matlab实例clearN=100f=zeros(50,50) f(15:35,23:28)=1 figure(1)imshow(f, notruesize )F=fft2(f,N,N) F2=fftshift(abs(F)) figure(2)x=1:N y=1:N mesh(x,y,F2(x,y)) colormap(gray) colorbar-matlab
  3. 所属分类:matlab

    • 发布日期:2017-03-27
    • 文件大小:3938
    • 提供者:孙强
  1. DSB_FM_TRANSMIT

    0下载:
  2. Transmit 2 signals via DSB-SC AM Fs= 44.1 KHz , fft fftshift
  3. 所属分类:matlab

    • 发布日期:2017-06-09
    • 文件大小:16633508
    • 提供者:manos
  1. example4_6

    0下载:
  2. :滤波 fs=400 采样频率,必须大于两倍基带信号最高频率 ts=1/fs 采样时间间隔 T=5 时间窗大小 t=0:ts:T -hf1=zeros(1,N) hf1(f<=B1&f>=-B1)=1 y1=hf1.*fftshift(y) figure subplot(211) plot(f,abs(fftshift(y))/N,f,hf1, r-- ) axis([-fs/2,fs/2,0,1.2]) title( 原信号
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-03
    • 文件大小:598
    • 提供者:张红
  1. example4_3

    0下载:
  2. 例3:分析占空比为ta的矩形脉冲频谱 T=1 时间窗大小 ta=0.5 占空比 N=256 t=linspace(-T,T,N) ts=2*T/N fs=1/ts -x=zeros(1,N) x(N/2-round(N/2*ta):N/2+round(N/2*ta))=ones(1,2*round(N/2*ta)+1) y=fft(x,N) figure plot(t,x) title([ 时域信号图 占空比为 ,num
  3. 所属分类:Delphi VCL

    • 发布日期:2017-03-24
    • 文件大小:532
    • 提供者:张红
  1. shift1

    0下载:
  2. fftshift 比较实数和复数傅里叶变换频谱的不同,以及N取值对其频谱特点的影响。-fftshift more real and complex Fourier transform spectrum of different, and the N values of the characteristics of its spectrum.
  3. 所属分类:matlab

    • 发布日期:2017-03-28
    • 文件大小:687
    • 提供者:linve
  1. matlab-work

    0下载:
  2. f=zeros(30,30) f(5:24,13:17)=1 imshow(f, notruesize ) F=fft2(f,256,256) F2=fftshift(F) figure,imshow(log(abs(F2)),[-1 5], notruesize ) -f=zeros(30,30) f(5:24,13:17)=1 imshow(f, notruesize ) F=fft2(f,256,256) F2=fftshift
  3. 所属分类:matlab

    • 发布日期:2017-03-24
    • 文件大小:36184
    • 提供者:madlain
  1. Image-Processing-3

    0下载:
  2. 矩形连续函数的傅立叶变换:构建一个矩形函数,对f进行补零,而后进行二维快速傅立叶变换:使变换结果的零频率分量位于中心,调用函数fftshift:映射和重建图像-Fourier transform of rectangular continuous function: for a rectangular function, the zeros of f, then the two-dimensional fast Fourier transform: the transform results o
  3. 所属分类:Special Effects

    • 发布日期:2017-04-03
    • 文件大小:4656
    • 提供者:edy
  1. rectanglePulse

    0下载:
  2. 利用函数建立非负矩形脉冲,然后利用频谱分析函数对该矩形脉冲进行频谱分析,并进行频率移位修正(利用FFTSHIFT),观察该脉冲频谱。-Use function to create a non-negative rectangular pulse, and then use the spectral analysis of the rectangular pulse function spectral analysis, and the frequency shift correction (us
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:790
    • 提供者: 趁黑
  1. fft2fftshift

    0下载:
  2. matlab 实现二维fft 并试算fftshift函数的功能 是学者们学习的好帮手-two-dimensional fft matlab fftshift function spreadsheet functions scholars learn good helper
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2016-01-26
    • 文件大小:1024
    • 提供者:金子奇
  1. testFFT

    0下载:
  2. 一个离散傅立叶变换的实例程序。展示了利用Matlab内建fft函数进行频谱分析的过程。给出了幅度频谱和相位频谱。-A discrete Fourier transform demonstration program in Matlab: Fs sampling frequency fft built-in fft function fftshift built-in function to rearrange the output of fft by moving the zero
  3. 所属分类:matlab

    • 发布日期:2017-11-17
    • 文件大小:10472
    • 提供者:Mellon
  1. ftandift

    0下载:
  2. 理想低通滤波器,巴特沃斯低通滤波器,高斯低通滤波器,使用FT和IFT,说明fftshift的作用。-Ideal low-pass filter, Butterworth low-pass filter, Gaussian low-pass filter, the use of FT and IFT, descr iption fftshift role.
  3. 所属分类:Special Effects

    • 发布日期:2017-04-08
    • 文件大小:977
    • 提供者:于倩
  1. fftshift

    0下载:
  2. 主要是用c语言实现matlab中的fftshift函数的,-Mainly used c language matlab in fftshift function,
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:761753
    • 提供者:霹雳风暴001
  1. RDSAR

    1下载:
  2. SAR RD 成像算法,ftx与fty分别为方位向和距离向fft,需要对fft进行两次fftshift-SAR RDimaging algorithm
  3. 所属分类:Special Effects

    • 发布日期:2017-04-07
    • 文件大小:1380
    • 提供者:sun
  1. 1

    0下载:
  2. 绘制一幅人像或风景图像的幅频图及相频图,并由幅频图及相频图重建空间域图像.(使用fft2,ifft2,fftshift函数)-Draw a portrait or landscape image amplitude-frequency and phase-frequency diagram in Figure by the amplitude-frequency and phase-frequency diagram in Figure spatial domain image reconstr
  3. 所属分类:Special Effects

    • 发布日期:2017-04-14
    • 文件大小:3204
    • 提供者:ann
« 12 »
搜珍网 www.dssz.com