netMarkerFace

PURPOSE ^

NETMARKERFACE return specific state of marker face corresponding network

SYNOPSIS ^

function [ mf ] = netMarkerFace( networkName )

DESCRIPTION ^

 NETMARKERFACE return specific state of marker face corresponding network

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [ mf ] = netMarkerFace( networkName )
0002 % NETMARKERFACE return specific state of marker face corresponding network
0003 
0004 %   ---------
0005 %   Yen-Nan Lin, NTHU, 2010-2014, Matlab 2012a
0006 
0007 switch networkName
0008     case 'CE'
0009         mf = netColor(networkName);
0010     case 'CX'
0011         mf = netColor(networkName);
0012     case 'RL'
0013         mf = netColor(networkName);
0014     case 'SW'
0015         mf = netColor(networkName);
0016     case 'ER'
0017         mf = netColor(networkName);
0018     case 'RandIoCE'
0019         mf = netColor(networkName);
0020     case 'SepIoCE'
0021         mf = netColor(networkName);
0022     case 'RevIoCE'
0023         mf = 'w';
0024     case 'DistSW'
0025         mf = netColor(networkName);
0026     case 'Provincial'
0027         mf = 'w';
0028     case 'Connector'
0029         mf = netColor(networkName);
0030     case 'Kinless'
0031         mf = 'w';
0032     otherwise
0033         error('No match networkName');
0034 end

Generated on Thu 30-Jan-2014 00:00:07 by m2html © 2005