ekf

背景 卡尔曼滤波(KF)是一种强大的线性滤波算法,适用于线性系统,即系统的状态转移方程和观测方程均为线性。然而,在实际&

iohannes iohannes Published on 2025-05-07

二维二分法获取函数最大时的,两个参数值

def get_best_param_2d(x_min, x_max, y_min, y_max, fun, epsilon=1e-6): """ 使用二维二分法在区间 [x_min, x_max] 和 [y_min, y_max] 内找到使目标函数 fun 最大的参数值 (x, y

iohannes iohannes Published on 2025-04-11

二分法获取函数最大值参数

def get_best_param(min_val, max_val, fun, epsilon=1e-6): """ 使用二分法在区间 [min_val, max_val] 内找到使目标函数 fun 最大的参数值。 参数: min_val: 搜索

iohannes iohannes Published on 2025-04-11

tf probility STS forecast

STS(Structural time series) model An STS model expresses an observed time series as the sum of simpler components: f(t) = f_1(t) + f_2(t) + f_3(t) + …

iohannes iohannes Published on 2025-03-18

决策树

不纯度 信息不纯度就是指从给定的信息源中获得的信息的纯度或精度。一般用信息熵或者基尼指数来计算。 信

iohannes iohannes Published on 2025-03-17

蒙特卡罗

https://www.cnblogs.com/pinard/p/6625739.html

iohannes iohannes Published on 2025-03-17

退火算法

名字 退火算法也叫模拟退火算法, Simulated Annealing 由来 其出发点是基于物理中固体物质的退火过程与一般组合优化问题之间的相似

iohannes iohannes Published on 2025-03-14

cfd常见求解算法

有限体积法/Finite Volume Method (FVM) 这是一种基于离散化方程的方法,将连续的偏微分方程转化为离散的边界条件方程,然后通过迭代&#

iohannes iohannes Published on 2025-03-14

Embedding

Embedding torch.nn.Embedding 是用来将一个数字变成一个指定维度的向量的,比如数字a变成一个10维的向量,数字b变成另外一个10维的向量 torch.nn.Embeddi

iohannes iohannes Published on 2025-03-14

GAN生成对抗网络

GAN的全称是Generative adversarial network,中文翻译过来就是生成对抗网络。生成对抗网络其实是两个网络的组合: 生成网络(Generator)负责生成模拟数据;

iohannes iohannes Published on 2025-03-14
Previous Next