• 大小: 12KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: Matlab
  • 标签: RFID  matlab  

资源简介

一种改进的RFID防碰撞算法

资源截图

代码片段和文件信息

% Program 6-9
% carriersense.m
%
% The function of the carrier sense
%
% Input arguments
%   no       : terminal which carrier sensing
%   now_time : now time
%
% Output argument
%   result   : 0: idle  1:busy
%
% Programmed by M.Okita
% Checked by H.Harada
%

function [result] = carriersense(nonow_time)

global Mnum Mstime Ttime Dtime                                          % definition of the global variable

delay = Dtime * Ttime;                                                  % calculation of the delay time

idx = find((Mstime+delay)<=now_time & now_time<=(Mstime+delay+Ttime));  % carrier sense
if length(idx) > 0                                                      % carrier is detected
    result = 1;                                                         

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1091  2001-11-29 16:19  ALOHA\carriersense.m

     文件        702  2001-11-29 16:19  ALOHA\distance.m

     文件       4320  2001-11-29 16:19  ALOHA\graph.m

     文件        872  2001-11-29 16:19  ALOHA\inhibitsense.m

     文件       6139  2008-11-05 19:46  ALOHA\main.m

     文件       2724  2001-11-29 16:19  ALOHA\npcsma.m

     文件       2199  2001-11-29 16:19  ALOHA\paloha.m

     文件       1446  2001-11-29 16:19  ALOHA\position.m

     文件       4193  2001-11-29 17:32  ALOHA\README-Chap6.txt

     文件       2398  2001-11-29 16:19  ALOHA\saloha.m

     文件       3416  2001-11-29 16:20  ALOHA\snpisma.m

     文件       1112  2001-11-29 16:20  ALOHA\theorys.m

     文件       1327  2008-11-05 19:58  ALOHA\test.dat

     目录          0  2009-07-10 21:38  ALOHA

----------- ---------  ---------- -----  ----

                31939                    14


评论

共有 条评论