Docker Compose 配置文件语法

语法 version: '3.8' # 指定 Docker Compose 文件的版本 services: # 定义服务(容器) service_name: # 服务名称 image: image_name # 使用的镜像 container_name: cont

iohannes iohannes Published on 2025-05-23

mujoco 增加摄像头并获取图片

xml 添加cameral <mujoco model="your_model"> <worldbody> <body name="pelvis" pos="0 0 1.05"> <camera name="depth_camera" pos="0.1 0 0.3"

iohannes iohannes Published on 2025-05-23

python版本管理和虚拟环境工具micromamba

安装python版本管理工具 wget -O micromamba.tar https://micro.mamba.pm/api/micromamba/linux-64/latest tar -xvjf micromamba.tar bin/micromamba sudo cp bin/microm

iohannes iohannes Published on 2025-05-19

ekf

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

iohannes iohannes Published on 2025-05-07

wireguard建立vpn

install server mkdir Wireguard cd Wireguard nano docker-compose.yaml version: '3' services: wireguard: image: linuxserver/wireguard container_

iohannes iohannes Published on 2025-04-20

ros轻量节点nodelet

1. nodelet nodelet 是 ROS 中一种轻量级的进程内通信机制,用于在同一个进程中运行多个节点,从而减少进程间通信的开销。nodelet 插件共享同一È

iohannes iohannes Published on 2025-04-14

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

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

常见数据挖掘算法

1. DBSCAN聚类 原理:DBSCAN是一种基于密度的聚类算法,其核心思想是通过密度来划分簇。算法使用两个参数:ε(邻域半径)和MinPts(邻

iohannes iohannes Published on 2025-04-11

http常见状态码

HTTP(超文本传输协议)状态码是用于表示客户端与服务器之间请求和响应状态的数字代码。以下是主要的HTTP状态码及其含义:

iohannes iohannes Published on 2025-04-01
Previous Next