摘要: 2.导数 阅读全文
posted @ 2024-04-18 09:54 penuel 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 查看磁盘使用率 df -h 查看当前目录下每个文件夹的大小 du -h -d1 查看root目录下每个文件夹的大小 du -h -d1 /root 阅读全文
posted @ 2024-01-31 17:14 penuel 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1. 扫描可用的wifi网络 nmcli device wifi rescan nmcli device wifi list 2. 连接到wifi网络 nmcli device wifi connect "wifi_name" password "password" ifname 阅读全文
posted @ 2024-01-29 10:33 penuel 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 控制器配置 Controller::configure() { //创建机器模型 _dynamics = std::make_shared<UnicycleModel>(); //离散网络,比如多重打靶法。参考点,输入,状态,等变量也会存放在grid里面,会实时更新。而且grid也继承了顶点传入到超 阅读全文
posted @ 2024-01-15 17:04 penuel 阅读(71) 评论(0) 推荐(0) 编辑
摘要: gdb /home/xu/ZME/obstacle_map/install/obstacle_map/lib/obstacle_map/obstacle_map_node set args --ros-args --ros-args --params-file /home/xu/ZME/Chargi 阅读全文
posted @ 2024-01-06 14:19 penuel 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Non-holonomic kinematics: 如上图可视,我们认为每两个离散位姿之间是通过一个圆弧运动的,所以这两个夹角相等,这里使用叉乘来表示等式约束 曲率约束: 速度和加速度约束: 阅读全文
posted @ 2023-12-18 10:43 penuel 阅读(28) 评论(0) 推荐(0) 编辑
摘要: template<typename T> class Singleton { public: static T& getInstance() { static T t; return t; } Singleton(const Singleton&) = delete; Singleton& oper 阅读全文
posted @ 2023-11-27 11:18 penuel 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 目录第五章 雅可比:速度和静力5.1 刚体的线速度和角速度5.5 机器人连杆运动5.7 雅可比 第五章 雅可比:速度和静力 5.1 刚体的线速度和角速度 \(V_{BORG}\)是坐标系B在A坐标系下的速度,\(^BV_Q\)是B坐标系下Q的速度,\(^A\Omega\)表示从坐标系A观测时,矢量Q 阅读全文
posted @ 2023-10-26 11:32 penuel 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 新建一个文件夹,vim docker.sh 自动共享该文件夹 #!/bin/bash XSOCK=/tmp/.X11-unix xhost +local:root docker run -it \ -e DISPLAY=$DISPLAY \ -w /humble_ws \ -v $PWD:/humb 阅读全文
posted @ 2023-10-25 10:08 penuel 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 平滑cost: template<typename T> inline void addSmoothingResidual( const double & weight, const Eigen::Matrix<T, 2, 1> & pt, const Eigen::Matrix<T, 2, 1> 阅读全文
posted @ 2023-10-20 19:33 penuel 阅读(69) 评论(0) 推荐(0) 编辑