Sample data for C-SVM vs. B-SVM comparison
Contents
function z = README()
Copyright Notice
%========================================================================== % % COPYRIGHT NOTICE AND LICENSE INFO: % % Copyright (c) 2011, Gautam V. Pendse % % E-mail : gautam.pendse@gmail.com % % URL : http://www.gautampendse.com % % % Example data by Gautam V. Pendse is licensed under a % Creative Commons Attribution 3.0 Unported License % %========================================================================== % %========================================================================== % % AUTHOR: GAUTAM V. PENDSE % DATE: 7 July 2011 % %========================================================================== %
Description of the .mat file:
(1) Name of the file containing data = demo_data.mat
(2) To load the data in matlab, type:
data = load('demo_data.mat')
data is a structure with 2 fields: X and y
(3) data.X = 2 by 450 matrix containing 2-D feature vectors
(4) data.y = 1 by 450 vector containing labels (+1 or -1) for each feature vector
end