登录
首页 » matlab » 阻抗控制10N

阻抗控制10N

于 2021-03-17 发布
0 249
下载积分: 1 下载次数: 22

代码说明:

说明:  双连杆机械臂阻抗控制仿真,完成力位置混合控制仿真,期望轨迹为圆(The impedance control simulation of the double link manipulator completes the hybrid control simulation of the force and position, and the expected trajectory is a circle)

文件列表:

阻抗控制10N\chw_input.m, 815 , 2019-03-06
阻抗控制10N\chw_plot.m, 1313 , 2019-12-13
阻抗控制10N\chw_sim.mdl, 34343 , 2019-03-21
阻抗控制10N\chw_system.m, 3509 , 2019-03-21
阻抗控制10N\chw_xd.m, 2334 , 2019-03-21
阻抗控制10N\slprj\_jitprj\jitEngineAccessInfo.mat, 756 , 2019-03-12
阻抗控制10N\slprj\_jitprj\slLrevgbOxl1T7nFXmMBjqB.l, 11996 , 2019-03-12
阻抗控制10N\slprj\_jitprj\slLrevgbOxl1T7nFXmMBjqB.mat, 708 , 2019-03-12
阻抗控制10N\slprj\_jitprj\szHK9xszthCWxM7Uqukzi0F.l, 7656 , 2019-03-12
阻抗控制10N\slprj\_jitprj\szHK9xszthCWxM7Uqukzi0F.mat, 692 , 2019-03-12
阻抗控制10N\slprj\_sfprj\EMLReport\emlReportAccessInfo.mat, 759 , 2019-03-12
阻抗控制10N\slprj\_sfprj\EMLReport\slLrevgbOxl1T7nFXmMBjqB.mat, 6605 , 2019-03-12
阻抗控制10N\slprj\_sfprj\EMLReport\szHK9xszthCWxM7Uqukzi0F.mat, 8247 , 2019-03-12
阻抗控制10N\slprj\_sfprj\precompile\autoInferAccessInfo.mat, 998 , 2019-03-12
阻抗控制10N\slprj\_sfprj\precompile\kusYkb8odBmvBThem6LbRH.mat, 630 , 2019-03-12
阻抗控制10N\slprj\_sfprj\precompile\yw6xJd9JhGGLGgPWg69xWH.mat, 585 , 2019-03-12
阻抗控制10N\slprj\_sfprj\twolink2016a\_self\sfun\info\binfo.mat, 826 , 2019-03-12
阻抗控制10N\slprj\_sfprj\twolink2016a\_self\sfun\info, 0 , 2019-03-24
阻抗控制10N\slprj\_sfprj\twolink2016a\_self\sfun, 0 , 2019-03-24
阻抗控制10N\slprj\_sfprj\EMLReport\slLrevgbOxl1T7nFXmMBjqB, 0 , 2019-03-12
阻抗控制10N\slprj\_sfprj\EMLReport\szHK9xszthCWxM7Uqukzi0F, 0 , 2019-03-12
阻抗控制10N\slprj\_sfprj\twolink2016a\_self, 0 , 2019-03-24
阻抗控制10N\slprj\_sfprj\EMLReport, 0 , 2019-03-24
阻抗控制10N\slprj\_sfprj\precompile, 0 , 2019-03-24
阻抗控制10N\slprj\_sfprj\twolink2016a, 0 , 2019-03-24
阻抗控制10N\slprj\_jitprj, 0 , 2019-03-24
阻抗控制10N\slprj\_sfprj, 0 , 2019-03-24
阻抗控制10N\slprj, 0 , 2019-03-24
阻抗控制10N, 0 , 2019-03-24

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

发表评论

0 个回复

  • 可以同步网络时间,分服务器端和客户端两个版本。完整vc序...
    可以同步网络时间,分服务器端和客户端两个版本。完整vc程序-network time synchronization, and server-client versions. Integrity vc procedures
    2022-05-24 23:35:59下载
    积分:1
  • 计算校验和 校验和算法描述:为保证网络上传输的数据的可靠性,在许多协议中都设置了校验和项,例如:IPv4、ICMPv4、IGMPV4、ICMPv6、UDP...
    计算校验和 校验和算法描述:为保证网络上传输的数据的可靠性,在许多协议中都设置了校验和项,例如:IPv4、ICMPv4、IGMPV4、ICMPv6、UDP和TCP 等等。计算这些校验和的算法称为网际校验和算法,简单来说就是:把被校验的数据16位进行累加,然后取反码,若数据字节长度为奇数,则数据尾部补一个字节的0以凑成偶数。 由于从输入文件读入的数据不能直接满足计算校验和的条件,所以首先对从文件读入缓冲区的数据进行预处理,即读入缓冲区时忽略空格。由于累加是按16位进行的,所以每次从缓冲区中读出4个字符,并将字符转换成对应的16进制数字,如此依次累加,直至数据全部读完。 还有一种情况,即如果数据长度为奇数个字节,则需要判断,并补0累加。程序中利用的是缓冲区长度计数器i和当前读取到计数器j判断数据长度是否为奇数。即如果数据长度为偶数,则读完数据时当前读取到计数器j的值应与缓冲区长度i相等,而如果数据长度为奇数,则读完数据时,当前读取到计数器j>缓冲区长度i,此时需将缓冲区中剩余的两个字符读出,并补0,转换成相应16进制数以后参与累加。 当累加结束后,将累加和的16位以上数据位移下再进行一次累加,并对最后累加和取反即得所求校验和。 -calculated checksum checksum algorithm Description : To ensure the network transmission of data reliability, in many of the agreements are set up and calibration, for example : IPv4, ICMPv4, IGMPV4, ICMPv6. UDP and TCP so on. Calculating checksum algorithm called the Internet checksum algorithm, the simple answer is : as has been the calibration data for 16 cumulative, and then take the anti-code, if the data byte length of the odd, data will make up the tai
    2022-01-26 06:39:03下载
    积分:1
  • colea444
    This includes how to protect the speaker using matlab functions.
    2010-03-03 09:21:36下载
    积分:1
  • 8202R_SW
    8202rd Sw usage description
    2014-06-07 04:29:33下载
    积分:1
  • juanjioqpsk
    基于卷积编码的BPSK、OQPSK调制通信系统的仿真设计,较为简单(OQPSK Modulation Communication System Based on Convolutional Coding)
    2019-03-08 13:15:42下载
    积分:1
  • DFP
    说明:  shepp-logan的2D直接傅里叶反变换法(Shepp-logan 2-D Direct Fourier Inverse Transform Method)
    2019-01-17 17:44:15下载
    积分:1
  • 后台功能: 1、歌曲分类添加; 2、可以添加N个分类; 3、后台管理网友点歌; 4、可以增加多个管理员。 Build 0305 更新修正:...
    后台功能: 1、歌曲分类添加; 2、可以添加N个分类; 3、后台管理网友点歌; 4、可以增加多个管理员。 Build 0305 更新修正: 部分JS错误,修正歌曲列表css,控制显示为一行等 后台入口: admin.asp 用户名: admin 密码: admin888 - -Back-office functions: 1, add a song classification 2, you can add N months classification 3, the background song management users 4, can increase the number of administrators. Build 0305 update: Some JS error and correct the list of songs css, display control, such as the background for his entrance: admin.asp user name: admin password: admin888--
    2022-03-04 18:49:46下载
    积分:1
  • SLM算法
    SLM算法降低OFDM通信系统中的PAPR,使用matlab进行仿真(SLM algorithm reduces PAPR in OFDM communication system, and matlab is used for simulation)
    2019-04-09 16:23:30下载
    积分:1
  • Oh, it can use this to write your own procedures for the netstat
    呵呵,可以用此来编写你自己的netstat程序了-Oh, it can use this to write your own procedures for the netstat
    2022-03-22 08:19:25下载
    积分:1
  • socket通信
    socket通信详细教程请参考: http://www.smarteas.net/post/2013/10/11/AgileEASNET-SOA-中间件平台SocketTcp通信框架-简单例子-实现简单的服务器客户段消息应答.aspx 请关注AgileEAS.NET 官方网站 http://www.smarteas.net 和技术博客:htt://www.cnblogs.com/eastjade/
    2022-05-14 19:50:15下载
    积分:1
  • 696518资源总数
  • 105554会员总数
  • 2今日下载