// 取通过URL传过来的参数 (格式如 ?Param1=Value1&Param2=Value2)
var URLParams = new Object() ;
var aParams = document.location.search.substr(1).split('&') ;
for (i=0 ; i < aParams.length ; i++) {
var aParam =
/* snmpTask.h */
#include
#define TASK_TBL_INDEX_LEN 1 /* Length of the index */
#define MAXTASKS 500 /* Max # of tasks in the system */
#define DISPLAY_ST
/*_______________________________________________________________________
Relate.ASM ADSP-2106x
Calculate the correlation of x[], y[]. The length of x[] and y[] must
be equal.
_______
% row product
% function Z=rprod(X,Y)
function Z=rprod(X,Y)
if(length(X(:,1)) ~= length(Y(:,1)) | length(Y(1,:)) ~=1)
disp('Error in RPROD');
return;
end
Z=zeros(size(X));
for i=1: