📄 gettype.m
字号:
function typeS = getType(dens)%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% getType(P)% return the kernel type of the kernel density estimate P% One of : 'Gaussian', 'Laplacian', 'Epanetchnikov'%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (C) 2003 Alexander Ihler; distributable under GPL -- see README.txtswitch(dens.type) case 0, typeS = 'Gaussian'; case 1, typeS = 'Epanetchnikov'; case 2, typeS = 'Laplacian';end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -