Code covered by the BSD License
-
ARTMAPgui(varargin)
MYGUI Brief description of GUI.
-
ART_Activate_Categories(input...
ART_Activate_Categories Activates the categories in an ART network.
-
ART_depleter_new(sampleNumber...
-
DEFARTMAP_Classify(artmap, te...
% This is an implementation of an ARTMAP variant,
-
DEFARTMAP_Classify_Fast(artma...
% This is an implementation of an ARTMAP variant,
-
DEFARTMAP_Classify_H(artmap, ...
% This is an implementation of Default ARTMAP,
-
DEFARTMAP_Complement_Code(dat...
% This is an implementation of an ARTMAP variant,
-
DEFARTMAP_Create_Network(M, n...
% This is an implementation of an ARTMAP variant,
-
DEFARTMAP_Learn(artmap, input...
% This is an implementation of Default ARTMAP,
-
DEFARTMAP_LearnTwinV10dynamic...
% This is an implementation of an ARTMAP variant,
-
DEFARTMAP_LearnTwinV10dynamic...
% This is an implementation of an ARTMAP variant,
-
DEFARTMAP_biasedLearn(artmap,...
% This is an implementation of biased ARTMAP,
-
DEFARTMAP_choice_function(art...
% This is an implementation of an ARTMAP variant,
-
DEFART_Normalize(a)
OGI MODIFICATION
-
DEFART_Update_Weights(artmap,...
B.11 LEARNING
-
Default_ARTMAP(varargin)
% This is an implementation of an ARTMAP variant,
-
GRAPH_DATA(train_data,train_o...
-
[A,A_norm,avg_acc]=confMatrix...
% This is an implementation of biased ARTMAP,
-
[A,A_norm,avg_acc]=confMatrix...
% This is an implementation of an ARTMAP variant,
-
createDataStruct(in_mat,row_c...
% This is part of an implementation of the biased ARTMAP Matlab code package,
-
fuzzyARTMAPTester(dataStructT...
% This is an implementation of an ARTMAP variant,
-
fuzzyARTMAP_examplesWrapper(v...
imshow('figure_CIS.jpg')
-
out_labels=addClassError(inpu...
-
out_nothing=plotCodingNode(in...
check_cond=1;
-
plotInputPoint(input_point,fi...
check_cond=1;
-
DEFARTMAP_Classifier.m
-
PrepareData.m
-
drawRectsArtmap.m
-
fuzzyARTMAP_MovieGenreTester.m
-
fuzzyARTMAP_examples.m
-
fuzzyARTMAP_genreTester.m
-
Contact.html
-
Credits.html
-
Fuzzy ARTMAP Code: Usage dire...
-
License.html
-
View all files
from
Fuzzy ARTMAP
by Massimiliano Versace
This package contains an implementation of Fuzzy ARTMAP.
|
| DEFARTMAP_Complement_Code(data)
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This is an implementation of an ARTMAP variant,
% as described in:
% Gaddam, C. S. (2007).
% Feature Selection via transmitter depletion in ARTMAP. Online Document, xx(x) xxx-xxx.
% Boston, MA: Boston University.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Programmed by Sai Chaitanya Gaddam (August 2007-08)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% The notation follows the article's notation,
% as does the headers for each step of the
% algorithm
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function complementCodedData = DEFARTMAP_Complement_Code(data)
% ART_Complement_Code Complement codes the data for use with an ART network.
% vertical is M, the FEATURES
% Horizontal is N, the NUMBER of data points.
%complementCodedData = [data; 1-data];
%data=(data+4)/9;
complementCodedData = [data; 1-data];
% Do the complement coding for each sample.
|
|
Contact us at files@mathworks.com