登录
首页 » matlab » ovm_idm

ovm_idm

于 2021-04-05 发布 文件大小:1KB
0 284
下载积分: 1 下载次数: 14

代码说明:

  基于 汽车跟驰模型OVM 和 IDM 的动态特性分析(2辆车)(Dynamical Characteristics of OVM and IDM Using Two Car Simulation for two vehicles.)

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

发表评论

0 个回复

  • X509CRLImpl
    Creates X.509 CRL by wrapping of the specified CertificateList object.
    2014-01-22 11:24:59下载
    积分:1
  • GUISUSAN
    边缘是图像最基本的特征,是图像分割的第一步。经典的边缘检测方法如:Roberts,Sobel,Prewitt,Kirsch,Laplace等方法,基本都是对原始图像中象素的小邻域构造边缘检测算子,进行一阶微分或二阶微分运算,求得梯度最大值或二阶导数的过零点,最后选取适当的阀值提取边界。由于这些算法涉及梯度的运算,因此均存在对噪声敏感、计算量大等缺点。在实践中,发现SUSAN算法只基于对周边象素的灰度比较,完全不涉及梯度的运算,因此其抗噪声能力很强,运算量也比较小。并将SUSAN算法用于多类图像的边缘检测中,实验证明该算法非常适合含噪图像的边缘检测。 2 SUSAN边缘检测简介 (err)
    2009-10-22 11:34:46下载
    积分:1
  • mfc
    MFC 和MATLAB 混合编程代码,使用MATCOM 进行接口的实例(MFC and MATLAB mixed programming code, the use of examples of interface MATCOM)
    2008-06-21 16:36:24下载
    积分:1
  • sdafsearchbnd
    Fminsearch不承认的约束限制。 不过简单的转换方法存在 转换成一个绑定的约束问题 无约束问题。 Fminsearchbnd用于酷似fminsearch, 除了边界应用到变量。 应用于国内的界限,利用 改造中的变量。 (二次型 单式,双罪恶界(十)。) 具有包容性的不平等的界限,它承认 边界值本身,但不准 在所有函数之外的范围评估。 请注意,fminsearchbnd允许用户准确地固定在某个给定值通过设置一个变量的确切范围相同的值。(Fminsearch does not admit bound constraints. However simple transformation methods exist to convert a bound constrained problem into an unconstrained problem. Fminsearchbnd is used exactly like fminsearch, except that bounds are applied to the variables. The bounds are applied internally, using a transformation of the variables. (Quadratic for single bounds, sin(x) for dual bounds.) The bounds are inclusive inequalities, which admit the boundary values themselves, but will not permit ANY function evaluations outside the bounds. Note that fminsearchbnd allows the user to exactly fix a variable at some given value, by setting both bounds to the exact same value.)
    2011-05-23 10:31:04下载
    积分:1
  • adcfft
    用matlab对ADC的输出进行fft分析,得到需要的SNDR、THD、SFDR、ENOB等信息。(With matlab fft of the output of ADC analysis, required SNDR, THD, SFDR, ENOB, and more.)
    2011-01-20 16:58:06下载
    积分:1
  • project1
    z-source inverter simulation. single phase.
    2011-06-03 02:33:40下载
    积分:1
  • SUSAN
    用MATLAB和VC对图像用SUSAN算法和Harris算法进行图像角点提取,还有自适应的SUSAN算法的角点提取(MATLAB and VC with SUSAN Harris algorithm for image image corner extraction, and adaptive SUSAN corner extraction algorithm)
    2014-10-01 17:07:42下载
    积分:1
  • Coordinate-conversion
    坐标转换(四参数) [row col]=size(source) for i=1:row u(i)=source(i,2) v(i)=source(i,3) x(i)=source(i,4) y(i)=source(i,5) B(2*i-1,1)=1 B(2*i-1,2)=0 B(2*i-1,3)=u(i) B(2*i-1,4)=-v(i) B(2*i,1)=0 B(2*i,2)=1 B(2*i,3)=v(i) B(2*i,4)=u(i) L(2*i-1,1)=x(i) L(2*i,1)=y(i) end X=inv(B *B)*(B *L) Txy=[X(1) X(2)] xzjz(1,1)=X(3) xzjz(1,2)=-X(4) xzjz(2,1)=X(4) xzjz(2,2)=X(3) [row1 col1]=size(target) for i=1:row1 u1(i)=target(i,2) v1(i)=target(i,3) d=[u1(i) v1(i)] md=Txy+xzjz*d end end (Coordinate conversion: [row col]=size(source) for i=1:row u(i)=source(i,2) v(i)=source(i,3) x(i)=source(i,4) y(i)=source(i,5) B(2*i-1,1)=1 B(2*i-1,2)=0 B(2*i-1,3)=u(i) B(2*i-1,4)=-v(i) B(2*i,1)=0 B(2*i,2)=1 B(2*i,3)=v(i) B(2*i,4)=u(i) L(2*i-1,1)=x(i) L(2*i,1)=y(i) end X=inv(B *B)*(B *L) Txy=[X(1) X(2)] xzjz(1,1)=X(3) xzjz(1,2)=-X(4) xzjz(2,1)=X(4) xzjz(2,2)=X(3) [row1 col1]=size(target) for i=1:row1 u1(i)=target(i,2) v1(i)=target(i,3) d=[u1(i) v1(i)] md=Txy+xzjz*d end end )
    2014-12-12 19:02:28下载
    积分:1
  • 模拟退火
    模拟退火算法潮流计算程序,包含一个对模拟算法介绍的ppt(Simulated annealing algorithm The power flow calculation program contains a ppt for the simulation algorithm introduced)
    2020-12-16 15:59:12下载
    积分:1
  • ARQ3.5
    用matlab实现ARQ 有具体代码和注释 已验证 可运行(Realization of ARQ Verification with MATLAB)
    2019-03-17 12:12:36下载
    积分:1
  • 696518资源总数
  • 106161会员总数
  • 5今日下载