登录
首页 » matlab » matlab7

matlab7

于 2007-09-21 发布 文件大小:1027KB
0 204
下载积分: 1 下载次数: 5

代码说明:

  适合MATALAB的初学者使用。简单易懂,有实力支持 。(MATALAB suitable for the beginner to use. Easy-to-read, have the strength to support.)

文件列表:

精通Matlab综合辅导与指南
........................\Chap10.DOC
........................\Chap11.doc
........................\Chap12.doc
........................\Chap13.doc
........................\Chap14.doc
........................\Chap18.doc
........................\Chap19.doc
........................\Chap20(1).doc
........................\Chap20(3).doc
........................\Chap21(1).doc
........................\Chap21(2).doc
........................\Chap21(3).doc
........................\Chap21(4).doc
........................\Chap22(1).doc
........................\Chap22(2).DOC
........................\Chap23.doc
........................\Chap5.doc
........................\Chap6.doc
........................\Chap7.doc
........................\Chap8.doc
........................\Chap9.doc
........................\MM5
........................\...\Contents.m
........................\...\fsangle.p
........................\...\fsdelay.p
........................\...\fsderiv.p
........................\...\fseval.p
........................\...\fsfind.p
........................\...\fsform.p
........................\...\fsharm.p
........................\...\fshelp.p
........................\...\fsintgrl.p
........................\...\fsmsv.p
........................\...\fspeak.p
........................\...\fspf.p
........................\...\fsprod.p
........................\...\fsresize.p
........................\...\fsresp.p
........................\...\fsround.p
........................\...\fssize.p
........................\...\fssum.p
........................\...\fssym.p
........................\...\fstable.p
........................\...\fsthd.p
........................\...\html
........................\...\....\Readme.html
........................\...\mm2dpfit.p
........................\...\mm2dpstr.p
........................\...\mm2dpval.p
........................\...\mm5.p
........................\...\mmap.p
........................\...\mmarrow.p
........................\...\mmax.p
........................\...\mmbox.p
........................\...\mmbrowse.p
........................\...\mmcd.p
........................\...\mmcurve.p
........................\...\mmdeal.p
........................\...\mmderiv.p
........................\...\mmdigit.p
........................\...\mmdir.p
........................\...\mmdoc.p
........................\...\mmdraw.p
........................\...\mmedit.p
........................\...\mmempty.p
........................\...\mmfftbin.p
........................\...\mmfftpfc.p
........................\...\mmfill.p
........................\...\mmfitpos.p
........................\...\mmfminc.p
........................\...\mmfminc_.p
........................\...\mmfminu.p
........................\...\mmfsolve.p
........................\...\mmftfind.p
........................\...\mmgca.p
........................\...\mmgcf.p
........................\...\mmget.p
........................\...\mmgetpos.p
........................\...\mmgetpt.p
........................\...\mmgetsiz.p
........................\...\mmgetxy.p
........................\...\mmginput.p
........................\...\mmgui.p
........................\...\mmhole.p
........................\...\mmin.p
........................\...\mminrect.p
........................\...\mminterp.p
........................\...\mmintgrl.p
........................\...\mminxy.p
........................\...\mmis2d.p
........................\...\mmismem.p
........................\...\mmisv5.p
........................\...\mmlceval.p
........................\...\mmlcfit.p
........................\...\mmlimit.p
........................\...\mmline.p
........................\...\mmload.p
........................\...\mmlog10.p
........................\...\mmlsim.p

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

发表评论

0 个回复

  • facerecognization
    使用matlab进行仿真,还有pca降维,kl变换方法进行人脸识别的参考论文(Using MATLAB simulation, and the PCA dimension reduction, the KL transform method for face recognition reference papers)
    2013-12-10 16:36:57下载
    积分:1
  • 2D-fdtd
    二维光子晶体禁带的MATLAB源码,光子晶体中因周期性结构而存在的频率禁带称为光子禁带,光子禁带的存在是光子晶体具有广泛应用前景的重要原因。 禁带越大,可控光的频带也越宽(Two-dimensional photonic crystal band gap of MATLAB source, photonic crystal structure exists because of the cyclical frequency band known as photonic band gap, photonic band gap is the existence of photonic crystal has a broad application prospects of the important reasons. The greater the band gap, controllable light the more wide-band)
    2008-12-16 11:09:44下载
    积分:1
  • LPF3KHz
    LPF 3KHZ implementation in matlab
    2010-10-07 22:23:08下载
    积分:1
  • Random_Matrix_Theory_and_Wireless_Communications
    说明:  普林斯顿大学无线通信著名教授Verdu的经典代表作,绝对的好书!(Princeton University Professor Verdu wireless communications known classical masterpieces, absolute good book!)
    2010-04-27 13:01:36下载
    积分:1
  • pinghua
    在matlab下利用空间均值法、中值法、最大值法和最小值法实现数字图像的平滑处理(Use of space under the matlab mean, median method, the maximum and minimum method method of smoothing digital images)
    2011-05-08 21:58:00下载
    积分:1
  • [4]IEEE_802.15.4a
    IEEE 802.15.4a信道模型报告(IEEE 802.15.4a channel)
    2014-09-15 10:18:34下载
    积分:1
  • Numerical-analysis-and-MATLAB
    数值分析及其matlab实现,任玉杰著。给出了每一种数值方法的matlab实现(Numerical analysis and matlab to achieve, Ren Yujie book. Each is given a numerical methods matlab to achieve)
    2011-11-28 10:34:29下载
    积分:1
  • moving_average_v3.1
    Smooths a matrix (with/without NaN s) via recursive moving average method and eliminates data gaps. (MOVING_AVERAGE(X,F) smooths the vector data X with a boxcar window of size 2F+1, i.e., by means of averaging each element with the F elements at his right and the F elements at his left. The extreme elements are also averaged but with less data, obviously. Leaving the edges intact. The method is really fast. MOVING_AVERAGE2(X,M,N) smooths the matrix X with a boxcar window of size (2M+1)x(2N+1), i.e., by means of averaging each element with its surrounding elements that fits in the mentioned box centered on it. This one is also really fast. The elements at the edges are averaged too, but the corners are left intact. NANMOVING_AVERAGE(X,F) or NANMOVING_AVERAGE(X,F,1) accept NaN s elements in the vector X the latter interpolates also those NaN s elements surrounded by numeric elements. NANMOVING_AVERAGE2(X,M,N) or NANMOVING_AVERAGE2(X,M,N,1) accept elements NaN s in the matrix X the latter interpolates also those NaN elements surrounded by numeric elements.)
    2009-03-06 23:10:07下载
    积分:1
  • pro_master
    beamforming codebook design for MIMO system
    2011-01-25 19:53:34下载
    积分:1
  • stft-111
    利用matlab 进行段数傅里叶变换,进行频谱分析,对于从事相关工作的人很有帮助。(The number of segments by using Fourier transform of MATLAB, frequency spectrum analysis, is helpful to be engaged in relevant work.)
    2013-11-26 15:53:13下载
    积分:1
  • 696516资源总数
  • 106554会员总数
  • 12今日下载