代码搜索结果
找到约 10,000 项符合
X 的代码
q_x.m
function ps=Q_x(x)
ps=quadv(@q,0,pi/2,1.0e-10,0,x)./pi;
function y=q(a,x)
y=exp(-x.^2./(2.*sin(a).^2));
x_fnct.m
function y=x_fnct(x,funfcn,p1,p2,p3)
% y=x_fnct(x,funfcn,p1,p2,p3)
% Returns the function funfcn(x) times x
args=[];
for nn=1:nargin-2
args=[args,',p',int2str(nn)];
end
args=[args,')'] ;