资源简介
matlab开发-Kilobotswarm控制Matlabarduino。控制千鸟群,将物体推过迷宫。蜂群被最亮的光吸引
代码片段和文件信息
function [ angle ] = AngleFix( angle threshold)
% ANGLEFIX takes an angle and makes it an equivalent in between a threshold
% in which on the the stated threshold is both the positive and
% neagtive threshold.
% ANGLEFIX(anglethreshold)
%
% x = an angle you would like to change
% threshold = the edge values wanted for angles
%
% if threshold = pi/2 or 90 then the angle created will be under the
% assumption that you have a half circle and the negative version of
% an angle is the same as the positive version of an angle
%
% if threshold = pi or 180 then the angle created will be under the
% assumption that you have a full circle and the negative version of
% an angle is not the same as the positive version of an angle
while (angle > threshold||angle<= -threshold)
if angle>threshold
angle=angle - 2*threshold;
elseif angle <= -threshold
angle=angle + 2*threshold;
end
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1029 2016-08-12 18:31 AngleFix.m
文件 346 2016-08-12 18:31 circle.m
文件 303 2016-08-12 18:31 dist2points.m
文件 1272 2016-08-12 18:31 FlowForce.m
文件 150286 2016-08-12 18:31 KilobotTableExample.jpeg
文件 296 2016-08-12 18:31 __MACOSX\._KilobotTableExample.jpeg
文件 549 2016-08-12 18:31 MazeMap.mat
文件 4930 2016-08-12 18:31 MDPgridworldFunction.m
文件 120 2016-08-12 18:31 __MACOSX\._MDPgridworldFunction.m
文件 13493 2016-08-12 18:31 ob
文件 120 2016-08-12 18:31 __MACOSX\._ob
文件 3969 2016-08-12 18:31 plot_gaussian_ellipsoid.m
文件 8862 2016-08-12 18:31 RegionCode.m
文件 120 2016-08-12 18:31 __MACOSX\._RegionCode.m
文件 3903 2016-08-12 18:31 RelayOn.m
文件 120 2016-08-12 18:31 __MACOSX\._RelayOn.m
文件 1601 2016-08-12 18:31 license.txt
- 上一篇:matlab开发-简单音频播放
- 下一篇:matlab开发-最大最小特征值组合
相关资源
- matlab开发-简单音频播放
- matlab开发-记录文件的绘图仪加速度、
- matlab开发-永磁同步电机PMSM动态数学模
- matlab开发-多目标优化差分进化算法
- matlab开发-随机微分方程解算
- matlab开发-波长调制光谱的二次谐波模
- matlab开发-仿制药生物生理学基础药动
- matlab开发-使用svmrfe选择功能
- matlab开发-KDTreeNearestNeighborandRangeSear
- matlab开发-stlread
- matlab开发-三维图像堆栈查看器
- matlab开发-动态电压恢复器故障dvr
- matlab开发-数据处理的分组方法GMDH
- matlab开发-DVR
- matlab开发-ParetoSet
- matlab开发-ShamirsSecretSharing
- matlab开发-othellom
- matlab开发-EMGONOFF
- matlab开发-级联H桥多电平转换三相
- matlab开发-带图形用户界面的步进电机
- matlab开发-MFTireGUI
- matlab开发-自适应霍夫曼编码技术字符
- matlab开发-ConnectFour
- matlab开发-floodfillscanline
- matlab开发-Paretosurfacenavigator
- matlab开发-分步序达尔文粒子群优化
- matlab开发-改进的解决方案经济调度方
- matlab开发-为Resnet50网络设计工具箱模
- matlab开发-sigmoid
- matlab开发-同步发电机的详细模型,包
评论
共有 条评论