代码搜索:Kurtosis
找到约 102 项符合「Kurtosis」的源代码
代码结果 102
www.eeworm.com/read/179705/9343591
c kurtosis.c
#include
#include
#include
#define BASE_LONG_DOUBLE
#include "templates_on.h"
#include "kurtosis_source.c"
#include "templates_off.h"
#undef BASE_LONG_DOUB
www.eeworm.com/read/371706/9540995
m kurtosis.m
function [K] = kurtosis(x)
%KURTOSIS: Compute the kurtosis of a time series or
% of a multichannel series
%
% [K] = kurtosis(x);
%
% IN x: data (vector or matrix)
%
% OUT K: K
www.eeworm.com/read/424281/10472382
c kurtosis.c
#include
#include
#include
#define BASE_LONG_DOUBLE
#include "templates_on.h"
#include "kurtosis_source.c"
#include "templates_off.h"
#undef BASE_LONG_DOUB
www.eeworm.com/read/303147/13821002
m kurtosis.m
function retval = kurtosis (x)
error(nargchk(1,2,nargin)) % check no. of input args
[nr, nc] = size (x);
x = x - ones (nr, 1) * mean (x);
retval = zeros (1, nc);
s = std (x);
in
www.eeworm.com/read/300891/13883423
m kurtosis.m
function [K] = kurtosis(x)
%KURTOSIS: Compute the kurtosis of a time series or
% of a multichannel series
%
% [K] = kurtosis(x);
%
% IN x: data (vector or matrix)
%
% OUT K: K
www.eeworm.com/read/233013/14173845
m kurtosis.m
function [K] = kurtosis(x)
%KURTOSIS: Compute the kurtosis of a time series or
% of a multichannel series
%
% [K] = kurtosis(x);
%
% IN x: data (vector or matrix)
%
% OUT K: K
www.eeworm.com/read/124283/14580788
c kurtosis.c
#include
#include
#include
#define BASE_LONG_DOUBLE
#include "templates_on.h"
#include "kurtosis_source.c"
#include "templates_off.h"
#undef BASE_LONG_DOUB
www.eeworm.com/read/223154/14652254
m kurtosis.m
function R=kurtosis(i,DIM)
% KURTOSIS estimates the kurtosis
%
% y = kurtosis(x,DIM)
% calculates kurtosis of x in dimension DIM
%
% DIM dimension
% 1: STATS of columns
% 2: STATS of rows
%
www.eeworm.com/read/212047/15167562
c kurtosis.c
#include
#include
#include
#define BASE_LONG_DOUBLE
#include "templates_on.h"
#include "kurtosis_source.c"
#include "templates_off.h"
#undef BASE_LONG_DOUB