动态模式分解(DMD)和多分辨率DMD(mrDMD)
从ECoG记录中解码手部动作
安装
git clone https://github.com/BruntonUWBio/ecog-hand
sudo apt-get install python3-pip
sudo pip3 install numpy matplotlib cvxpy pytest sklearn
用法
在您的项目中,加载所需的模块:
% matplotlib inline
from mrDMD import mrDMD
from DMD import DMD
from helper_functions import *
从一维正弦曲线之和组成的信号开始
dt = 1 / 200
N = 1000
t = np . linspace ( 0 , 5 , N )
amp = 1
freq_max = 40
fre
2021-06-23 14:58:37
243KB
Python
1