unit.m
来自「robot toolbox很多不全面」· M 代码 · 共 17 行
M
17 行
%UNIT Unitize a vector%% VN = UNIT(V)%% Returns a unit vector aligned with V.% $Log: unit.m,v $% Revision 1.2 2002/04/01 11:47:20 pic% General cleanup of code: help comments, see also, copyright, remnant dh/dyn% references, clarification of functions.%% $Revision: 1.2 $% Copyright (C) 1990-2002, by Peter I. Corkefunction u = unit(v) u = v / norm(v,'fro');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?