fasterfcsummation.m

来自「RankNGG 算法实现. 含有dll文件。源码为matlab」· M 代码 · 共 42 行

M
42
字号
function [E]=FastErfcSummation(N,M,q,x,y,p,h,rx,r,nn)
% Code for fast erfc summation.
%
% C++ Implementation.
%
% Loads FastErfcSummation.dll
%
% Parameters for the algorithm. Use the MATLAB function [rx,r,h,p,n]=choose_parameters(epsil)
%
%% Input
%
% * N ...number of source points.
% * M ... number of target points.
% * q ... 1 x N matrix of N source weights.
% * x ... 1 x N matrix of N source points.
% * y ... 1 x M matrix of M target points.
%
% Algorithm parameters--
% 
% * rx ... the interval length
% * r ... the cutoff radius
% * h ... the series parameter
% * p ... the truncation number
% * n ... number of influential clusters
%
%% Ouput
%
% *E ... 1 x M vector of the evaluated sum .
%
%
%% Signature
%
% Author: Vikas Chandrakant Raykar
% E-Mail: vikas@cs.umd.edu
% Date: September 27, 2006
%
%% See also
%
%  choose_parameters


⌨️ 快捷键说明

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