玩命加载中 . . .

学习之旅
09
21
56-区间合并 56-区间合并
LeetCode 56. Merge IntervalsLeetCode-56 Given an array of intervals where intervals[i] = [starti, endi], merge all overl
2021-09-21
18
18
17
卡尔曼滤波 卡尔曼滤波
用处:在有噪声的情况下结合不同的传感器来找到数据的最佳估计值 在飞控上的应用: 姿态角估计 通过建立含有姿态角,角速度,加速度等状态量的模型,通过IMU的数据进行卡尔曼滤波,重新估计出状态量,间接得到姿态角数据 位置估计 加速度一次
2021-09-17
17
66-加一 66-加一
LeetCode 66. Plus OneLeetCode-66 You are given a large integer represented as an integer array digits, where each digits
2021-09-17
16
16
15
36/37-数独 36/37-数独
LeetCode 36. Valid SudokuLeetCode-36 Determine if a 9 x 9 Sudoku board is valid. Only the filled cells need to be valida
2021-09-15
15
14
CVX教程 CVX教程
CVX基本语法声明问题类型或控制屏幕输出 cvx_begin // 开始优化 cvx_begin quiet // 不输出log cvx_begin sdp // 半定规划 cvx_begin gp // 几何规划 定义
2021-09-14
14
Matlab字符变量 Matlab字符变量
字符变量syms a b real; x = (a + b) ^ 2; expand(x); // 展开 a^2 + 2*a*b + b^2 y = (a / 2) ^ 2 / a; // 自动化简 a/4 z = sin(a)
2021-09-14
14
48-翻转图像 48-翻转图像
LeetCode 48. Rotate ImageLeetCode-48 You are given an n x n 2D matrix representing an image, rotate the image by 90 degr
2021-09-14
3 / 5