We have moved to @ Placement Papers Hub !! Visit our new website here for more..

MATLAB PLOT ASTHETICS

MATLAB PLOT ASTHETICS


y     yellow        .     point
m    magenta    o    circle
c     cyan          x     x-mark
r      red           +      plus
g     green        -      solid
b     blue          *      star
w    white         :      dotted
k     black        -.     dashdot
                       --      dashed


» x = 0:0.1:100;
» y = 3*x;
» plot(x,y,'r:')