代码搜索结果

找到约 10,000 项符合 R 的代码

r.m

% 计算平方根 function out = r(x) out=sqrt(abs(x));

r.m

% % routine to get the square root of a number % % usage: via tree structured GA % function out = r(x) % % out=sqrt(abs(x));

r.m

% 计算平方根 function out = r(x) out=sqrt(abs(x));

r.m

% % routine to get the square root of a number % % usage: via tree structured GA % function out = r(x) % % out=sqrt(abs(x));

r.m

function tri = R(tau,T) tri = (1-abs(tau)./T).*heaviside(1-abs(tau)./T); %%%%%%%%%%%%% R.m %%%%%%%%%%%%%%%%%%%% % HEAVISIDE Step function. % HEAVISIDE(X) is 0 for X < 0, 1 for X > 0,