⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eulstrap.m

📁 klaman滤波算法的matlab编程,主要用于gps定位,具有非常好的参考价值,运行通过
💻 M
字号:
function E = eulStrap(eul)% This will generate the euler angle strapdowm matrix% given a row vector of the euler angles, [phi theta psi].%%	E = eulStrap(eul)phi = eul(1);theta = eul(2);psi = eul(3);sphi = sin(phi);cphi = cos(phi);stheta = sin(theta);ctheta = cos(theta);E = [1 sphi*tan(theta) cphi*tan(theta);...      0 cphi -sphi;...      0 sphi/ctheta cphi/ctheta];

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -