1 Star 1 Fork 1

mmmmachine/beng_thesis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
multquat.m 332 Bytes
一键复制 编辑 原始数据 按行查看 历史
function [ prod ] = multquat( q, p )
%MULTQUAT Quaterion multiplication function
% Basic quaternion multiplication scheme required for
% operations in other functions of this programme
a=q(1);
b=q(2);
c=q(3);
d=q(4);
%{
e=p(1);
f=p(2);
g=p(3);
h=p(4);
%}
prod=[a -b -c -d;
b a -d c ;
c d a -b;
d -c b a]*p;
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Matlab
1
https://gitee.com/mmmmachine/beng_thesis.git
git@gitee.com:mmmmachine/beng_thesis.git
mmmmachine
beng_thesis
beng_thesis
master

搜索帮助