登录
首页 » PDF » 04786432[1]

04786432[1]

于 2010-12-14 发布 文件大小:802KB
0 270
下载积分: 1 下载次数: 21

代码说明:

  Space-Time-Frequency Code Implementation in MB-OFDM UWB Communications: Design Criteria and Performance

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

发表评论

0 个回复

  • emd1
    经验模式分解程序(matlab)可以对输入信号进行经验模式分解(Empirical mode decomposition process (matlab))
    2009-04-13 17:57:26下载
    积分:1
  • Wavelet-Decomposition-For-Images
    main executing reference usage: observeWaveletDecompositionBenchmark_N_levels.m The objective is to illustrate wavelet decomposition, and to describe how operations may be done in the wavelet domain before the reconstruction. The demo decouples the wavelet operations (transform, operation in wavelet domain, and reconstruction) from the plotting. A PSNR and MSE describes the possible distortion (however minimal) of the forward and inverse wavelet transform. * Caveat: The image display may be subjected to the selected target image. The objective is to provide a simple framework for the understanding of working with wavelets.
    2011-01-20 07:08:22下载
    积分:1
  • bpprogram
    本程序根据训练好的网络文件ANN.mat预测新的数据文件,得到均方误差,并画出预测数据和原数据的对比图。此程序运用到了很多Matlab编程中常用到的表达方式,还有一些神经网络编程的基本概念的表达,如归一化的表达(This procedure according to the trained network file prediction ANN.mat new data file, the mean square error, and painted the original data and prediction data comparison of Fig. This procedure applied to a lot of Matlab programming to the expression commonly used, and some neural network programming the expression of the basic concepts, such as the normalized expression)
    2008-08-14 21:19:14下载
    积分:1
  • lyapunovexponentfordifferentialsystem
    计算微分方程系统的Lyapunv exponent,在非线性动力学和有关混沌的研究中非常有用。(calculated differential system Lyapunv exponent, Nonlinear Dynamics and Chaos in the study very useful.)
    2007-01-30 12:56:45下载
    积分:1
  • seekweight
    这是一个可用的求权重的程序,所求的是列的权重,作为函数的形式出现,可以直接调用,实在数据处理时编写的,可以直接用。(Seeking weight program is available, ask the weight of the column, as a function of the form appears, you can directly call, really data processing written can be directly used.)
    2013-05-10 16:48:53下载
    积分:1
  • topoplot
    说明:  脑电地形图matlab代码,可根据数值向量和通道位置文件绘制2D地形图(plot a topographic map of a scalp data field in a 2-D circular view (looking down at the top of the head) using interpolation on a fine cartesian grid.)
    2020-12-20 19:59:09下载
    积分:1
  • solve_ff
    对地震剖面图求出某一区域的外源干扰的公式(The seismic cross-sectional view obtained in a region of exogenous interference formula)
    2013-04-28 11:10:12下载
    积分:1
  • FCMClust
    说明:  实现了FCM模糊聚类算法,由matlab实现,可以直接使用(FCM clustering algorithm implemented by the matlab implementation, can be used directly)
    2011-03-20 19:21:49下载
    积分:1
  • vcmatlab
    VC与matlab混合编程。详细介绍了几种混合编程的方法,实用易懂。(VC mixed with matlab programming. Details of several hybrid programming approach, practical and easy to understand.)
    2011-08-21 09:28:39下载
    积分:1
  • gravity
    function dg=gplus(x,y,z,x1,x2,y1,y2,z1,z2,p) G=6.67e-11 t222=myfun(x,y,z,x2,y2,z2) t122=myfun(x,y,z,x1,y2,z2) t212=myfun(x,y,z,x2,y1,z2) t221=myfun(x,y,z,x2,y2,z1) t211=myfun(x,y,z,x2,y1,z1) t121=myfun(x,y,z,x1,y2,z1) t112=myfun(x,y,z,x1,y1,z2) t111=myfun(x,y,z,x1,y1,z1) dg=-G*p*1e6*(t222-t122-t212-t221+t211+t121+t112-t111) 转化为g.u. function y=myfun(x,y,z,xi,eta,zeta) R=sqrt((xi-x).^2+(eta-y).^2+(zeta-z).^2) temp1=(xi-x).*log((eta-y)+R) temp2=(eta-y).*log((xi-x)+R) temp3=(zeta-z).*atan((zeta-z).*R/((xi-x).*(eta-y))) 书中所给公式 temp3=-(zeta-z).*atan((xi-x).*(eta-y)./(zeta-z)./R) 上式变换 y=temp1+temp2+temp3 (function dg = gplus (x, y, z, x1, x2, y1, y2, z1, z2, p) G = 6.67e-11 t222 = myfun (x, y, z, x2, y2, z2) t122 = myfun (x, y, z, x1, y2, z2) t212 = myfun (x, y, z, x2, y1, z2) t221 = myfun (x, y, z, x2, y2, z1) t211 = myfun (x, y, z, x2, y1, z1) t121 = myfun (x, y, z, x1, y2, z1) t112 = myfun (x, y, z, x1, y1, z2) t111 = myfun (x, y, z, x1, y1, z1) dg =-G* p* 1e6* (t222-t122-t212-t221+t211+t121+t112-t111) converted the Gu function y = myfun, (x y, z, xi, eta, zeta) R = sqrt ((xi-x). ^ 2+ (eta-y). ^ 2+ (zeta-z). ^ 2) temp1 = (xi-x).* log ((eta-y)+R) temp2 = (eta-y).* log ((xi-x)+R) temp3 = (zeta-z).* atan ((zeta-z).* R/( (xi-x).* (eta-y))) book given formula Temp3 =- (Zeta-z)* ATAN ((Xi-X)* (ETA-y)/(Zeta- Z)/R) the above formula transform Y = temp1+temp2+temp3 )
    2013-03-20 20:25:15下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载