eulr_dcm.m

来自「惯性导航系统传递对准系统模型程序」· M 代码 · 共 22 行

M
22
字号
function DCMnb = eulr_dcm(eul_vect)

  if nargin<1,error('insufficient number of input arguments'),end

  theta = eul_vect(1); phi = eul_vect(2); psi = eul_vect(3);

  cpsi = cos(psi); spsi = sin(psi);
  cthe = cos(theta); sthe = sin(theta);
  cphi = cos(phi); sphi = sin(phi);

  C1 = [cpsi  spsi 0; ...
        -spsi cpsi 0; ...
         0     0   1];
  C2 = [1   0    0;   ...
        0  cthe sthe; ...
        0 -sthe cthe];  
  C3 = [cphi  0  -sphi; ...
          0   1     0 ; ...
        sphi  0   cphi];
  
  DCMnb = C3 * C2 * C1;

⌨️ 快捷键说明

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