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

📄 linear_dyn.m

📁 本文是关于粒子群算法(pso)的介绍和相关MATLAB源程序,是智能天线权值优化方面的一种很前沿的算法
💻 M
字号:
% linear_dyn.m
% returns an offset that can be added to data that increases linearly with
% time, based on cputime, first time it is called is start time
%
% equation is: offset = (cputime - tnot)*scalefactor
%  where tnot = cputime at the first call
%        scalefactor = value that slows or speeds up linear movement
%
% usage: [offset] = linear_dyn(scalefactor)

% Brian Birge
% Rev 1.0
% 8/23/04

function out = linear_dyn(sf)
 % this keeps the same start time for each run of the calling function 
 % this will reset when any calling prog is re-saved or workspace is
 % cleared
  persistent tnot
 % find starting time
  if ~exist('tnot') | length(tnot)==0
     tnot = cputime;
  end
 
 out = (cputime-tnot)*sf;
 return

⌨️ 快捷键说明

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