摘要: 1. 基本语法 [捕获列表](参数列表) -> 返回类型 { 函数体 } 2. STL算法结合 // 自定义排序 vector<Student> students; sort(students.begin(), students.end(), [](const Student& a, const S 阅读全文
posted @ 2025-11-03 08:55 kang_ms 阅读(4) 评论(0) 推荐(0)
摘要: 基于预估校算法(Adams-Bashforth-Moulton方法)的分数阶混沌系统Lyapunov指数计算 一、算法原理框架 数学模型: 采用Grünwald-Letnikov定义: 二、Matlab核心代码实现 %% 分数阶Lorenz系统参数设置 alpha = 0.95; % 分数阶阶数 s 阅读全文
posted @ 2025-11-03 08:47 kang_ms 阅读(6) 评论(0) 推荐(0)