[] = ShowParallelCoord(fs,AllRepVectors) ShowParallelCoord : Shows the parallel coordinates graph of the vectors INPUT fs: Font size for the images AllRepVectors: Vectors, each row is an observation, each column corresponds to a variable. Last version 8/26/2008. Roberto Santana (roberto.santana@ehu.es)
0001 function[] = ShowParallelCoord(fs,AllRepVectors) 0002 % [] = ShowParallelCoord(fs,AllRepVectors) 0003 % ShowParallelCoord : Shows the parallel coordinates graph of the vectors 0004 % INPUT 0005 % fs: Font size for the images 0006 % AllRepVectors: Vectors, each row is an observation, each column 0007 % corresponds to a variable. 0008 % 0009 % Last version 8/26/2008. Roberto Santana (roberto.santana@ehu.es) 0010 0011 0012 figure % Parallel coordinates 0013 axes('Fontsize',fs); 0014 parallelcoords(AllRepVectors);