资源简介
%Demonstrates the mcrvm algorithm on a toy example (Three class classification problem). Part of the code was
%derived from Tipping's matlab code.
% @file mcrvm_example.m
% Author Arasanathan Thayananthan ( at315@cam.ac.uk)
% (c) Copyright University of Cambridge
%
% This library is free software; you can redistribute it and/or
% modify it under the terms of the GNU Lesser General Public
% License as published by the Free Software Foundation; either
% version 2 of the License, or (at your option) any later version.
%
% This library is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
% Lesser General Public License for more details.
%
% You should have received a copy of the GNU Lesser General Public
% License along with this library; if not, write to the Free Software
% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
代码片段和文件信息
function X=CreateData
X1=[0.6*rand(501) 0.7*rand(501) 1*ones(501)];
X2=[1.0-0.6*rand(501) 0.6*rand(501) 2*ones(501)];
X3=[1.0-0.7*rand(501) 1.0-0.6*rand(501) 3*ones(501)];
X=[X1;X2;X3];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 206 2008-02-05 18:27 mc_rvm\CreateData.m
文件 3020 2008-02-07 08:43 mc_rvm\mcrvm_example.asv
文件 4094 2008-02-07 08:56 mc_rvm\mcrvm_example.m
文件 10018 2008-02-07 08:43 mc_rvm\mc_rvm.asv
文件 10710 2008-02-07 08:57 mc_rvm\mc_rvm.m
文件 2335 2004-10-19 04:16 mc_rvm\sbl_kernelFunction.m
目录 0 2008-02-07 08:43 mc_rvm\
相关资源
- 图像彩色增强matlab源码
- 2*1的Alamouti空时码BER性能曲线matlab源码
- 自适应贝叶斯算法matlab源码
- 自适应小波阈值算法matlab源码
- ICA的人脸识别MATLAB源码
- 图像处理 人脸识别皮肤提取 经典ma
- OFDM MATLAB源码
- S变换 matlab源码
- 决策树id3 matlab源码
- 消息传递算法 和积算法 因子图 matl
- 三边测量定位MATLAB源码
- 熵权法求权重MATLAB源码
- 人工势场法matlab源码
- matlab 相关向量机 分类 回归
- 多相滤波数字信道化MATLAB源码
- 基于卡尔曼滤波的视频人脸跟踪MATL
- 遗传算法和粒子群算法结合的matlab源
- 广义霍夫变换的MATLAB源码
- 蚁群算法的matlab源码.rar
- 眼底血管匹配滤波MATLAB源码
- rvm-matlab工具箱
- 图像边缘检测matlab源码kirsch、Laplaci
- matlab源码--散点数据生成格网、等高线
- 遗传算法改进的模糊C-均值聚类MATLA
- 蚁群算法的matlab源码
- FCLS matlab源码 丰度估计
- OFDMmatlab源码
- 非局部均值去噪matlab源码
- 最大后验概率 MAP 准则matlab源码
- 遗传算法优化的BP神经网络 - MATLAB源码
评论
共有 条评论