现代 C++ 基础
Basics ReviewArray Type Multidimensional array 多维数组 除了第一维其它维必须明确指出大小(explicit size) 不可以全部 decay Dynamic allocation malloc in C and new/new [] in C++ new和 malloc 返回都是指针 释放 Function 函数返回类型不能是函数或者数组
Linux 命令
常用 安装 .deb 文件 1sudo dpkg -i {packagen ame} While dpkg -i indeed installs the package, it doesn’t do any automatic dependency resolution. Meanwhile there are two other alternative, usi
自动驾驶工具工作记录
C++sregex_token_iterator的特性 string 转数字 关于时间的函数和结构体 time 函数12#include <time.h>time_t time(time_t* calptr) 得到自 1970-1-1 00:00:00 以来经过的秒数,结果可以通过返回值,也可以通过参数得到 1234time_t now;time(&now);// 等同于
Markov Decision Processes
Basics 有的地方写作 : state space, : initial state 在代码就是s0 = mdp.reset() : action space, applicable in each state 当前状态 下允许的动作 转移概率(trasition probabilities),对于 也可以写作: 是概率化的(即 probabilistic state model),