登录
首页 » matlab » DSP_pithshifter.m

DSP_pithshifter.m

于 2014-01-07 发布 文件大小:2KB
0 210
下载积分: 1 下载次数: 4

代码说明:

  這是一個讓原始音訊可以再不改變音訊長度下,改變pitch的程式,因為如果音訊用resample,雖然可改變其音訊頻率音高,但是卻會有拉長音訊的副作用,因此設計了一個可以改善其缺點的小方法(實做paper )(This is an original audio so that you can no longer change the audio down the length of the program to change the pitch because if the audio with resample, although it can change the pitch of the audio frequency, but the audio will be stretched side effects, and thus can improve the design of a small way shortcomings (real do paper))

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • guassnewton
    求解无约束问题最优化问题的基础方法之一:高斯牛顿法(Gauss-Newton methon)
    2011-01-02 13:27:18下载
    积分:1
  • jingdianpinyulvboqi
    包括各种频域滤波器:经典频域理想低通滤波器 ,经典频域巴特沃斯低通滤波器 ,经典频域指数低通滤波器, 经典频域理想高通滤波器 , 经典频域巴特沃斯高通滤波器, 经典频域指数高通滤波器,经典频域带通滤波器 ,经典频域带阻滤波器(Including a variety of frequency domain filter: Classic ideal low-pass filter frequency domain, frequency domain classic Butterworth low-pass filter, the classic low-pass filter frequency domain index, the classic ideal high-pass filter frequency domain, frequency domain Butterworth classic Andean high-pass filter, the classic high-pass filter frequency domain index, the classical frequency domain band-pass filter, band stop filter frequency domain classics)
    2013-07-13 15:24:36下载
    积分:1
  • li9_23
    clear all I=imread( lena.bmp ) figure imshow(I) I2=imrotate(I,-4, bilinear ) 逆时针旋转4度 figure imshow(I2) I3=fliplr(I) 垂直镜像 figure imshow(I3) I4=imresize(I,0.5, bilinear ) 缩小为原图的1/2 figure imshow(I4) A=double(I) 转换为double类型 计算7个不变矩 [nc,nr]=size(A) [x,y]=meshgrid(1:nr,1:nc) 得到网格 x=x(:) y=y(:) A=A(:) m.m00=sum(A) if m.m00==0 m.m00=eps end m.m10=sum(x.*A) m.m01=sum(y.*A) 计算均值 xmean=m.m10/m.m00 ymean=m.m01/m.m00 计算中心矩(li9_23.rar cm.cm00=m.m00 cm.cm02=(sum((y-ymean).^2.*A))/(m.m00^2) cm.cm03=(sum((y-ymean).^3.*A))/(m.m00^2.5) cm.cm11=(sum((x-xmean).*(y-ymean).*A))/(m.m00^2) cm.cm12=(sum((x-xmean).*(y-ymean).^2.*A))/(m.m00^2.5) cm.cm20=(sum((x-xmean).^2.*A))/(m.m00^2) cm.cm21=(sum((x-xmean).^2.*(y-ymean).*A))/(m.m00^2.5) cm.cm30=(sum((x-xmean).^3.*A))/(m.m00^2.5) im(1)=cm.cm20+cm.cm02 im(2)=(cm.cm20-cm.cm02)^2+4*cm.cm11^2 im(3)=(cm.cm30-3*cm.cm12)^2+(3*cm.cm21-cm.cm03)^2 im(4)=(cm.cm30+cm.cm12)^2+(cm.cm21+cm.cm03)^2 im(5)=(cm.cm30-3*cm.cm12)*(cm.cm30+cm.cm12)... *((cm.cm30+cm.cm12)^2-3*(cm.cm21+cm.cm03)^2)... +(3*cm.cm21-cm.cm03)*(cm.cm21+cm.cm03)... +(3*(cm.cm30+cm.cm12)^2-(cm.cm21+cm.cm03)^2) im(6)=(cm.cm20-cm.cm02)*((cm.cm30+cm.cm12)^2-(cm.cm21+cm.cm03)^2)... +4*cm.cm11*(cm.cm30+cm.cm12)*(cm.cm21+cm.cm03) im(7)=(3*cm.cm21-cm.cm03)*(cm.cm30+cm.cm12)... *((cm.cm30+cm.cm12)^2-3*(cm.cm21+cm.cm03)^2)... +(3*cm.cm12-cm.cm30)*(cm.cm21+cm.cm03)... *()
    2010-10-17 21:53:14下载
    积分:1
  • MATLAB
    matlab GUI 视频教程源程序 包含基本的GUI操作(Video tutorial matlab GUI source code contains the basic GUI operation)
    2013-10-07 15:39:47下载
    积分:1
  • Desktop
    基于matlab软件实现等距离离散化为粗糙集约简前准备(matlab Equidistance discretization)
    2013-12-24 17:30:20下载
    积分:1
  • stabilitycriterion
    hurwtz,routh稳定判据的matlab文件,(hurwtz, routh criterion matlab file)
    2012-08-23 08:41:41下载
    积分:1
  • myHough
    Matlab code: detect straight lines using hough algorithm
    2013-05-12 18:25:22下载
    积分:1
  • chaos--seidel--jacobi--lnback--ode
    该程序包包含五个代码,均用matlab编写,内容分别是混沌动力系统中,logistics函数随参数a变化周期收敛图像;以及seidel,jacobi两种迭代法求解线性方程组;以及常微分方程求解乒乓球运动轨迹;以及用newton向后插值法估计lnx函数值的源文件。 (This package contains five codes are written in matlab, the contents are chaotic dynamical systems, logistics function with parameters a change cycle convergence image and seidel, jacobi two iterative method for solving linear equations and ordinary differential equations Pong ball trajectory and an interpolation method to estimate with newton backward lnx function value source files. )
    2015-11-23 17:17:27下载
    积分:1
  • LFM_SWF
    步进频,线性调频信号的雷达回波数据处理,单脉冲雷达(Stepped frequency signal processing)
    2021-03-19 15:49:19下载
    积分:1
  • Antenna-phase-
    天线相位中心偏差变化及改正模型对精密单点定位精度的影响(Antenna phase center offset correction model changes and precise point positioning accuracy of)
    2013-11-10 21:16:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载