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

📄 fasterfcsummation.html

📁 RankNGG 算法实现. 含有dll文件。源码为matlab
💻 HTML
字号:
<html xmlns:mwsh="http://www.mathworks.com/namespace/mcode/v1/syntaxhighlight.dtd">
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   
      <!--
This HTML is auto-generated from an M-file.
To make changes, update the M-file and republish this document.
      -->
      <title>FastErfcSummation</title>
      <meta name="generator" content="MATLAB 7.2">
      <meta name="date" content="2006-09-28">
      <meta name="m-file" content="script_FastErfcSummation"><style>

body {
  background-color: white;
  margin:10px;
}

h1 {
  color: #990000; 
  font-size: x-large;
}

h2 {
  color: #990000;
  font-size: medium;
}

/* Make the text shrink to fit narrow windows, but not stretch too far in 
wide windows.  On Gecko-based browsers, the shrink-to-fit doesn't work. */ 
p,h1,h2,div.content div {
  /* for MATLAB's browser */
  width: 600px;
  /* for Mozilla, but the "width" tag overrides it anyway */
  max-width: 600px;
  /* for IE */
  width:expression(document.body.clientWidth > 620 ? "600px": "auto" );
}

pre.codeinput {
  background: #EEEEEE;
  padding: 10px;
}
@media print {
  pre.codeinput {word-wrap:break-word; width:100%;}
} 

span.keyword {color: #0000FF}
span.comment {color: #228B22}
span.string {color: #A020F0}
span.untermstring {color: #B20000}
span.syscmd {color: #B28C00}

pre.codeoutput {
  color: #666666;
  padding: 10px;
}

pre.error {
  color: red;
}

p.footer {
  text-align: right;
  font-size: xx-small;
  font-weight: lighter;
  font-style: italic;
  color: gray;
}

  </style></head>
   <body>
      <div class="content">
         <h1>FastErfcSummation</h1>
         <introduction>
            <p>Code for fast erfc summation.</p>
         </introduction>
         <h2>Contents</h2>
         <div>
            <ul>
               <li><a href="#1">Syntax</a></li>
               <li><a href="#2">Description</a></li>
               <li><a href="#6">Input</a></li>
               <li><a href="#10">Ouput</a></li>
               <li><a href="#12">Signature</a></li>
               <li><a href="#14">See also</a></li>
            </ul>
         </div>
         <h2>Syntax<a name="1"></a></h2><pre>[E]=FastErfcSummation(N,M,q,x,y,p,h,rx,r,nn)</pre><h2>Description<a name="2"></a></h2>
         <p>C++ Implementation.</p>
         <p>Loads FastErfcSummation.dll</p>
         <p>Parameters for the algorithm. Use the MATLAB function [rx,r,h,p,n]=choose_parameters(epsil)</p>
         <h2>Input<a name="6"></a></h2>
         <div>
            <ul>
               <li>N ...number of source points.</li>
               <li>M ... number of target points.</li>
               <li>q ... 1 x N matrix of N source weights.</li>
               <li>x ... 1 x N matrix of N source points.</li>
               <li>y ... 1 x M matrix of M target points.</li>
            </ul>
         </div>
         <p>Algorithm parameters--</p>
         <div>
            <ul>
               <li>rx ... the interval length</li>
               <li>r ... the cutoff radius</li>
               <li>h ... the series parameter</li>
               <li>p ... the truncation number</li>
               <li>n ... number of influential clusters</li>
            </ul>
         </div>
         <h2>Ouput<a name="10"></a></h2>
         <p>*E ... 1 x M vector of the evaluated sum .</p>
         <h2>Signature<a name="12"></a></h2>
         <div>
            <ul>
               <li><b>Author:</b> Vikas Chandrakant Raykar
               </li>
               <li><b>E-Mail:</b> <a href="mailto:vikas@cs.umd.edu">vikas@cs.umd.edu</a> Date: September 27, 2006
               </li>
            </ul>
         </div>
         <h2>See also<a name="14"></a></h2>
         <p><a href="choose_parameters.html">choose_parameters</a></p>
         <p class="footer"><br>
            Published with wg_publish; V1.0<br></p>
      </div>
      <!--
##### SOURCE BEGIN #####
%% FastErfcSummation
% Code for fast erfc summation.
%% Syntax
%  [E]=FastErfcSummation(N,M,q,x,y,p,h,rx,r,nn)
%% Description
%%
% 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 parametersREPLACE_WITH_DASH_DASH
%%
%%
% * 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
%%
%%
%

##### SOURCE END #####
-->
   </body>
</html>

⌨️ 快捷键说明

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