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

📄 setangletorange.m

📁 it is a matlab file foe develop SLAM localization this is a toolbox for develop develop realtime e
💻 M
字号:
%SETANGLETORANGE Put angle into a two-pi interval.%   AR = SETANGLETORANGE(A,MIN) puts angle A into the interval%   [MIN..MIN+2*pi[. If A is Inf, Inf is returned.%%   See also DIFFANGLEUNWRAP.% v.1.0, Dec. 2003, Kai Arras, CAS-KTH: accel. with profilerfunction ar = setangletorange(a,mina);if a < Inf,  while a >= mina + 2*pi,    a = a - 2*pi;  end;  while a < mina,    a = a + 2*pi;  end;  ar = a;else  ar = Inf;end;

⌨️ 快捷键说明

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