?? max.m
字號(hào):
function X = max(kde)
% X = max(p)
% A simple estimate of the maximal peak location of p; returns the kernel location
% with the largest density estimate.
%
% See also: kde, mean, getPoints
% Copyright (C) 2003 Alexander Ihler; distributable under GPL -- see README.txt
L = evaluate(kde,getPoints(kde));
[mx,mxind] = max(L);
X = getPoints(kde,mxind(1));
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -