会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
penuel
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
23
下一页
2024年1月31日
linux清理内存
摘要: 查看磁盘使用率 df -h 查看当前目录下每个文件夹的大小 du -h -d1 查看root目录下每个文件夹的大小 du -h -d1 /root
阅读全文
posted @ 2024-01-31 17:13 penuel
阅读(35)
评论(0)
推荐(0)
2024年1月29日
ubuntu wifi连接设置
摘要: 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:32 penuel
阅读(412)
评论(0)
推荐(1)
2024年1月15日
mpc_local_planner详解
摘要: 控制器配置 Controller::configure() { //创建机器模型 _dynamics = std::make_shared<UnicycleModel>(); //离散网络,比如多重打靶法。参考点,输入,状态,等变量也会存放在grid里面,会实时更新。而且grid也继承了顶点传入到超
阅读全文
posted @ 2024-01-15 17:04 penuel
阅读(715)
评论(1)
推荐(0)
2024年1月6日
gbd调试
摘要: 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
阅读(17)
评论(0)
推荐(0)
2023年12月18日
TEB总结
摘要: Non-holonomic kinematics: 如上图可视,我们认为每两个离散位姿之间是通过一个圆弧运动的,所以这两个夹角相等,这里使用叉乘来表示等式约束 曲率约束: 速度和加速度约束:
阅读全文
posted @ 2023-12-18 10:43 penuel
阅读(51)
评论(0)
推荐(0)
2023年11月27日
C++11 后的单例写法
摘要: 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
阅读(27)
评论(0)
推荐(0)
2023年10月26日
机器人学导论-约翰 J.克雷格
摘要: 目录第五章 雅可比:速度和静力5.1 刚体的线速度和角速度5.5 机器人连杆运动5.7 雅可比第六章 动力学6.1 刚体加速度:6.3 质量分布:6.4 欧拉方程:6.5 牛顿欧拉迭代动力学方程:6.6 考虑摩擦力的动力学方程: 第五章 雅可比:速度和静力 5.1 刚体的线速度和角速度 \(V_{B
阅读全文
posted @ 2023-10-26 11:32 penuel
阅读(447)
评论(0)
推荐(0)
2023年10月25日
docker新建容器脚本
摘要: 新建一个文件夹,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
阅读(33)
评论(0)
推荐(0)
2023年10月20日
nav2_constrained_smoother
摘要: 平滑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
阅读(148)
评论(0)
推荐(0)
2023年7月7日
原子操作实现无锁栈
摘要: ``` //atomic3.cpp 使用CAS操作实现一个无锁栈 #include #include template class lock_free_stack { private: struct node { T data; node* next; node(const T& data) : d
阅读全文
posted @ 2023-07-07 15:11 penuel
阅读(47)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
23
下一页
公告