资源简介
ReBEL-0.2.7.rar

代码片段和文件信息
function C = addangle(A B)
% ADDANGLE Addition function for ‘angle space‘ sigma-points expressed in radians.
% This needed to deal with the angular discontinuety at +- pi radians.
%
% C = addangle(AB)
%
% INPUT
% A and B : angles expressed in radians
% OUTPUT
% C : sum C=A+B such that -pi < C < pi
%
% Copyright (c) Oregon Health & Science University (2006)
%
% This file is part of the ReBEL Toolkit. The ReBEL Toolkit is available free for
% academic use only (see included license file) and can be obtained from
% http://choosh.csee.ogi.edu/rebel/. Businesses wishing to obtain a copy of the
% software should contact rebel@csee.ogi.edu for commercial licensing information.
%
% See LICENSE (which should be part of the main toolkit distribution) for more
% detail.
%=============================================================================================
C = A + B;
twopi = 2*pi;
idx1 = C > pi;
idx2 = C < -pi;
C(idx1) = C(idx1) - twopi;
C(idx2) = C(idx2) + twopi;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3836 2006-10-03 09:28 ReBEL-0.2.7\Bugfixes
文件 5384 2006-09-21 10:58 ReBEL-0.2.7\ChangeLog
文件 1065 2006-09-18 13:06 ReBEL-0.2.7\core\addangle.m
文件 1298 2006-09-18 13:06 ReBEL-0.2.7\core\addrelpath.m
文件 14736 2006-09-18 13:07 ReBEL-0.2.7\core\cdkf.m
文件 934 2006-09-18 13:06 ReBEL-0.2.7\core\checkdups.m
文件 1376 2006-09-18 13:06 ReBEL-0.2.7\core\checkstructfields.m
文件 4143 2006-09-19 09:25 ReBEL-0.2.7\core\consistent.m
文件 3639 2006-09-18 13:06 ReBEL-0.2.7\core\Contents.m
文件 4356 2006-09-18 13:06 ReBEL-0.2.7\core\convgausns.m
文件 874 2006-09-18 13:06 ReBEL-0.2.7\core\cvecrep.m
文件 1185 2006-09-18 13:06 ReBEL-0.2.7\core\datamat.m
文件 8319 2006-09-18 13:07 ReBEL-0.2.7\core\ekf.m
文件 1977 2006-09-18 13:06 ReBEL-0.2.7\core\fixinfds.m
文件 2871 2006-09-18 13:06 ReBEL-0.2.7\core\gauseval.m
文件 1639 2006-09-19 11:08 ReBEL-0.2.7\core\gaussample.m
文件 80546 2006-09-19 11:34 ReBEL-0.2.7\core\geninfds.m
文件 28704 2006-09-18 13:06 ReBEL-0.2.7\core\gennoiseds.m
文件 30417 2006-09-18 13:06 ReBEL-0.2.7\core\gensysnoiseds.m
文件 7201 2006-09-18 13:06 ReBEL-0.2.7\core\gmmfit.m
文件 4671 2006-09-18 13:06 ReBEL-0.2.7\core\gmminitialize.m
文件 5126 2006-09-18 13:06 ReBEL-0.2.7\core\gmmprobability.m
文件 3021 2006-09-18 13:06 ReBEL-0.2.7\core\gmmsample.m
文件 10668 2006-09-18 13:07 ReBEL-0.2.7\core\gmsppf.m
文件 3526 2006-09-18 13:06 ReBEL-0.2.7\core\gmsppf2.m
文件 9746 2006-09-18 13:07 ReBEL-0.2.7\core\gspf.m
文件 27931 2006-09-19 09:20 ReBEL-0.2.7\core\gssm.m
文件 8762 2006-09-22 11:25 ReBEL-0.2.7\core\kf.m
文件 2695 2006-09-18 13:06 ReBEL-0.2.7\core\mlpff.m
文件 2808 2006-09-18 13:06 ReBEL-0.2.7\core\mlpindexgen.m
............此处省略711个文件信息
相关资源
- vspd7.2.308.zip
- 价值2k的H漫画小说系统
- Pythonamp;课堂amp;笔记(高淇amp;400;集第
- ddos压力测试工具99657
- UML建模大全
- 开源1A锂电池充电板TP4056原理图+PCB
- m1卡 ic卡可选择扇区初始化加密软件
- TSCC.exe
- FTP课程设计(服务端+客户端)
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
- 联想启天M4350 BIOS升级文件
评论
共有 条评论