资源简介
马氏距离的matlaB实现 源代码
代码片段和文件信息
function d = mahalanobis(X Mu C)
%MAHALANOBIS Mahalanobis distance.
% D = MAHALANOBIS(X MU C) returns the Mahalanobis distance between
% the length p vectors X and MU given the p by p covariance matrix
% C. If omitted it is assumed that C is the identity matrix(单位矩阵/恒等矩阵)
% EYE(p). If either X or MU is an n by p matrix D will be returned
% as an n by g matrix where n is the number of rows in X and g is
% the number of rows in MU where each entry i j corresponds to the
% mahalanobis distance between row i of X and row j of MU. If MU is
% simply 0 it is treated as the origin from which Mahalanobis
% distance to X is calculated. C must be a positive definite
% symmetric matrix.
%
% The Mahalanobis distance between vectors X(i:) and MU(j:) is
% defined as:
%
% D(ij) = ((X(i:) - MU(j:))‘*INV(C)*(X(i:) - MU(j:))).^(1/2)
% Copyright (c) 1999 Michael Kiefte.
% $Log$
error(nargchk(2 3 nargin))
if isempty(X) | ~isa(X ‘double‘) | ~isreal(X) |
相关资源
- 卷积神经网络完成程序matlab.zip
- matlab图像检索
- 卷积神经网络经典代码
- 现代通信系统第二版MATLAB版) 包括全
- 卡尔曼滤波 Matlab程序
- 稀疏编码matlab 教程
- 系统辨识资料大全(matlab系统辨识工
- 化学计量学方法及MATLAB实现
- MATLAB Neural Network Toolbox官方教程
- Inverse Synthetic Aperture Radar Imaging with
- matlab GUI设计
- 雷达压制干扰matlab程序
- 系统辨识,使用者的理论
- MATLAB仿真林飞、杜欣编著.pdf
- 基于HMM的语音识别MATLAB代码
- 关于均衡的MATLAB程序合集
- 数字滤波器的MATLAB与FPGA实现代码
- 滑模变结构控制MATLAB仿真 第3版 基本
- Matlab火焰烟雾检测(GUI)
- 帧间差分法matlab
- Matlab MPT工具箱 MPT3.2.1 (2019更新 稳
- 《模式识别与智能计算的MATLAB实现》
- 基于sift和SVM算法实现的手势识别 MA
- 数字图像处理第三版冈萨雷斯英文附
- 《精通MATLAB图像处理》全书pdf高清完
- 斯坦福机器学习公开课CS229讲义作业及
- MATLAB神经网络30个案例分析(高清版)
-
微网运行控制simuli
nk仿真,包含逆变 - MATLAB数据分析方法
- MATLAB图像处理:能力提高与应用案例
评论
共有 条评论