资源简介

模式识别4个实验(matlab代码 )1.贝叶斯决策分类器对鸢尾花 2.基于Fisher 准则的线性分类器分析 3.PCA 人脸特征提取与重构 4.设计 C-均值聚类 分器对鸢尾花均值聚类

资源截图

代码片段和文件信息

function [m_vectorcov_matrix ] = bayes_train(sample)
%FISHER: A program to compute Bayes classification;

%  IN   sample:      training sample
%
%  OUT  m_vector:      sample mean vector
%       cov_matrix:    sample covariance matrix
%
%  Reference: Principle and application of pattern recognition,Li Bicheng,2012
%
%  Copyright (C) 2017 ISPT%  Author: Nie Pengfei

[NsampNfeature] = size(sample);
%% mean vector and covariance matrix
for k = 1 : Nfeature
    m_vector(k) = sum(sample(:k))./Nsamp;
    for j = 1 : Nfeature
        m_j = sum(sample(:k))./Nsamp;
        cov_matrix(kj) = ((sample(:k)-m_vector(k))‘ * (sample(:j)-m_j))./(Nsamp-1);
    end
end     
end



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    3769022  2017-12-05 16:15  ORL人脸图像.zip

     文件        486  2017-12-11 18:11  setosa.mat

     文件        538  2017-12-11 18:11  versicolor.mat

     文件     951008  2017-12-11 18:06  模式识别实验指导书.pdf

     文件        212  2017-12-12 11:19  数据说明.txt

     文件       4551  2017-08-21 09:40  iris.data

     文件       1509  2018-09-29 17:33  fisher.m

     文件       3287  2018-09-29 19:44  fisher_test.m

     文件       1275  2018-10-16 19:15  pca_main.m

     文件        870  2017-12-01 17:06  post_prob.m

     文件        757  2018-09-11 20:58  post_prob_main.m

     文件       1579  1995-02-23 18:13  att_faces\README

     文件      10318  1994-04-18 14:17  att_faces\s1\1.pgm

     文件      10318  1994-04-18 14:07  att_faces\s1\10.pgm

     文件      10318  1994-04-18 14:17  att_faces\s1\2.pgm

     文件      10318  1994-04-18 14:17  att_faces\s1\3.pgm

     文件      10318  1994-04-18 14:17  att_faces\s1\4.pgm

     文件      10318  1994-04-18 14:17  att_faces\s1\5.pgm

     文件      10318  1994-04-18 14:07  att_faces\s1\6.pgm

     文件      10318  1994-04-18 14:07  att_faces\s1\7.pgm

     文件      10318  1994-04-18 14:07  att_faces\s1\8.pgm

     文件      10318  1994-04-18 14:07  att_faces\s1\9.pgm

     文件      10318  1994-04-18 14:17  att_faces\s10\1.pgm

     文件      10318  1994-04-18 14:07  att_faces\s10\10.pgm

     文件      10318  1994-04-18 14:17  att_faces\s10\2.pgm

     文件      10318  1994-04-18 14:17  att_faces\s10\3.pgm

     文件      10318  1994-04-18 14:17  att_faces\s10\4.pgm

     文件      10318  1994-04-18 14:17  att_faces\s10\5.pgm

     文件      10318  1994-04-18 14:07  att_faces\s10\6.pgm

     文件      10318  1994-04-18 14:07  att_faces\s10\7.pgm

............此处省略434个文件信息

评论

共有 条评论