norm.m

来自「robot toolbox很多不全面」· M 代码 · 共 20 行

M
20
字号
%NORM Compute the norm of a quaternion%%	QN = norm(Q)%% Return a unit-quaternion corresponding to the quaternion Q.%% $Log: norm.m,v $% Revision 1.2  2002/04/01 12:06:47  pic% General tidyup, help comments, copyright, see also, RCS keys.%% $Revision: 1.2 $%% Copyright (C) 1993-2002, by Peter I. Corkefunction n = norm(q)	n = norm(double(q));

⌨️ 快捷键说明

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