资源简介
%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\
相关资源
- 基于BP神经网络对几种字体0-9的数字识
- 图像的二进小波分解matlab源码(保证
- MRF matlab源码
- GMM(matlab源码)
- 医学图像重建作业matlab源码
- 相关向量机的快速算法
- 粒子群算法优化RBF网络matlab源码
- 《信息隐藏技术实验教程》MATLAB源码
- 蚁群算法实现三维路径规划Matlab源码
- 产生泊松过程Matlab源码
- 数字图像处理作业canny边缘检测坎尼边
- 《信息隐藏技术实验教程》MATLAB源码
- LTE仿真Matlab源码
- 基于核回归kernel regression方法的去模糊
- 西交大模式识别编程大作业报告+MAT
- 神经网络、遗传算法、支持向量机、
- matlab源码的IMM交互多目标单目标跟踪
- 无线传感器网络节点定位算法matlab源
- 各种最小二乘法总结算法+matlab源码
- LTE系统仿真平台_matlab源码
- 2dpca的matlab源码
- 高阶累积量matlab源码
- 基于智能优化的机器人路径规划matl
- 数字图像处理课程设计matlab源码及课
- 胡广书的现代信号处理Word版以及Mat
- 何凯明_暗通道去雾_matlab源码
- 可直接运行国外的seam carving matlab源码
- 人脸识别MATLAB源码
- 超分辨率matlab源码pocs-superresolution_v
- 课程设计—断线故障matlab源码及算例
评论
共有 条评论