spiral_dyn.m
来自「psotoolbox程序已经通过了测试函数」· M 代码 · 共 37 行
M
37 行
% spiral_dyn.m
% returns x,y position along an archimedean spiral of degree n
% based on cputime, first time it is called is start time
%
% based on: r = a*(theta^n)
%
% usage: [x_cnt,y_cnt] = spiral_dyn(n,a)
% i.e.,
% n = 2 (Fermat)
% = 1 (Archimedes)
% = -1 (Hyberbolic)
% = -2 (Lituus)
% Brian Birge
% Rev 1.1
% 8/23/04
function [x_cnt,y_cnt] = spiral_dyn(n,a)
% 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 iter
% find starting time
if ~exist('tnot') | length(tnot)==0
tnot = cputime;
% iter = 0;
end
%iter = iter+10 ;
theta = cputime-tnot;
%theta = iter/10000;
r = a*(theta.^n);
x_cnt = r*cos(theta);
y_cnt = r*sin(theta);
return
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?