sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Error using <a href="matlab:helpUtils.errorDocCallback('plot')" style="font-weight:bold">plot</a>
Conversion to double from inline is not possible.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 6)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',6,0)">line 6</a>)
plot(x,inline(ekf),'r:*');
} 
sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Error using <a href="matlab:helpUtils.errorDocCallback('plot')" style="font-weight:bold">plot</a>
Invalid property found.
Object Name :  line
Property Name :  'exp(2*x)'.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 6)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',6,0)">line 6</a>)
plot(x,ekf,'r:*');
} 
help plot
 <strong>plot</strong>   Linear plot. 
    <strong>plot</strong>(X,Y) plots vector Y versus vector X. If X or Y is a matrix,
    then the vector is plotted versus the rows or columns of the matrix,
    whichever line up.  If X is a scalar and Y is a vector, disconnected
    line objects are created and plotted as discrete points vertically at
    X.
 
    <strong>plot</strong>(Y) plots the columns of Y versus their index.
    If Y is complex, <strong>plot</strong>(Y) is equivalent to <strong>plot</strong>(real(Y),imag(Y)).
    In all other uses of <strong>plot</strong>, the imaginary part is ignored.
 
    Various line types, plot symbols and colors may be obtained with
    <strong>plot</strong>(X,Y,S) where S is a character string made from one element
    from any or all the following 3 columns:
 
           b     blue          .     point              -     solid
           g     green         o     circle             :     dotted
           r     red           x     x-mark             -.    dashdot 
           c     cyan          +     plus               --    dashed   
           m     magenta       *     star             (none)  no line
           y     yellow        s     square
           k     black         d     diamond
           w     white         v     triangle (down)
                               ^     triangle (up)
                               <     triangle (left)
                               >     triangle (right)
                               p     pentagram
                               h     hexagram
                          
    For example, <strong>plot</strong>(X,Y,'c+:') plots a cyan dotted line with a plus 
    at each data point; <strong>plot</strong>(X,Y,'bd') plots blue diamond at each data 
    point but does not draw any line.
 
    <strong>plot</strong>(X1,Y1,S1,X2,Y2,S2,X3,Y3,S3,...) combines the plots defined by
    the (X,Y,S) triples, where the X's and Y's are vectors or matrices 
    and the S's are strings.  
 
    For example, <strong>plot</strong>(X,Y,'y-',X,Y,'go') plots the data twice, with a
    solid yellow line interpolating green circles at the data points.
 
    The <strong>plot</strong> command, if no color is specified, makes automatic use of
    the colors specified by the axes ColorOrder property.  By default,
    <strong>plot</strong> cycles through the colors in the ColorOrder property.  For
    monochrome systems, <strong>plot</strong> cycles over the axes LineStyleOrder property.
 
    Note that RGB colors in the ColorOrder property may differ from
    similarly-named colors in the (X,Y,S) triples.  For example, the 
    second axes ColorOrder property is medium green with RGB [0 .5 0],
    while <strong>plot</strong>(X,Y,'g') plots a green line with RGB [0 1 0].
 
    If you do not specify a marker type, <strong>plot</strong> uses no marker. 
    If you do not specify a line style, <strong>plot</strong> uses a solid line.
 
    <strong>plot</strong>(AX,...) plots into the axes with handle AX.
 
    <strong>plot</strong> returns a column vector of handles to lineseries objects, one
    handle per plotted line. 
 
    The X,Y pairs, or X,Y,S triples, can be followed by 
    parameter/value pairs to specify additional properties 
    of the lines. For example, <strong>plot</strong>(X,Y,'LineWidth',2,'Color',[.6 0 0]) 
    will create a plot with a dark red line width of 2 points.
 
    Example
       x = -pi:pi/10:pi;
       y = tan(sin(x)) - sin(tan(x));
       plot(x,y,'--rs','LineWidth',2,...
                       'MarkerEdgeColor','k',...
                       'MarkerFaceColor','g',...
                       'MarkerSize',10)
 
    See also <a href="matlab:help plottools">plottools</a>, <a href="matlab:help semilogx">semilogx</a>, <a href="matlab:help semilogy">semilogy</a>, <a href="matlab:help loglog">loglog</a>, <a href="matlab:help plotyy">plotyy</a>, <a href="matlab:help plot3">plot3</a>, <a href="matlab:help grid">grid</a>,
    <a href="matlab:help title">title</a>, <a href="matlab:help xlabel">xlabel</a>, <a href="matlab:help ylabel">ylabel</a>, <a href="matlab:help axis">axis</a>, <a href="matlab:help axes">axes</a>, <a href="matlab:help hold">hold</a>, <a href="matlab:help legend">legend</a>, <a href="matlab:help subplot">subplot</a>, <a href="matlab:help scatter">scatter</a>.

    Overloaded methods:
       <a href="matlab:help phytree/plot">phytree/plot</a>
       <a href="matlab:help clustergram/plot">clustergram/plot</a>
       <a href="matlab:help HeatMap/plot">HeatMap/plot</a>
       <a href="matlab:help sfit/plot">sfit/plot</a>
       <a href="matlab:help cfit/plot">cfit/plot</a>
       <a href="matlab:help gpuArray/plot">gpuArray/plot</a>
       <a href="matlab:help fints/plot">fints/plot</a>
       <a href="matlab:help iddata/plot">iddata/plot</a>
       <a href="matlab:help idnlhw/plot">idnlhw/plot</a>
       <a href="matlab:help idnlarx/plot">idnlarx/plot</a>
       <a href="matlab:help cgrules/plot">cgrules/plot</a>
       <a href="matlab:help xregtwostage/plot">xregtwostage/plot</a>
       <a href="matlab:help xregtransient/plot">xregtransient/plot</a>
       <a href="matlab:help xregmodel/plot">xregmodel/plot</a>
       <a href="matlab:help xregarx/plot">xregarx/plot</a>
       <a href="matlab:help localmulti/plot">localmulti/plot</a>
       <a href="matlab:help localmod/plot">localmod/plot</a>
       <a href="matlab:help localavfit/plot">localavfit/plot</a>
       <a href="matlab:help sweepset/plot">sweepset/plot</a>
       <a href="matlab:help mdevtestplan/plot">mdevtestplan/plot</a>
       <a href="matlab:help cgdatasetnode/plot">cgdatasetnode/plot</a>
       <a href="matlab:help dspdata.plot">dspdata.plot</a>
       <a href="matlab:help LinearModel/plot">LinearModel/plot</a>
       <a href="matlab:help timeseries/plot">timeseries/plot</a>
       <a href="matlab:help wdectree/plot">wdectree/plot</a>
       <a href="matlab:help ntree/plot">ntree/plot</a>
       <a href="matlab:help dtree/plot">dtree/plot</a>
       <a href="matlab:help wvtree/plot">wvtree/plot</a>
       <a href="matlab:help rwvtree/plot">rwvtree/plot</a>
       <a href="matlab:help edwttree/plot">edwttree/plot</a>

    Reference page in Help browser
       <a href="matlab:doc plot">doc plot</a>

sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Error using <a href="matlab:helpUtils.errorDocCallback('plot')" style="font-weight:bold">plot</a>
Conversion to double from inline is not possible.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 6)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',6,0)">line 6</a>)
plot(x,inline(ekf),'r:*');
} 
clc
help plot
 <strong>plot</strong>   Linear plot. 
    <strong>plot</strong>(X,Y) plots vector Y versus vector X. If X or Y is a matrix,
    then the vector is plotted versus the rows or columns of the matrix,
    whichever line up.  If X is a scalar and Y is a vector, disconnected
    line objects are created and plotted as discrete points vertically at
    X.
 
    <strong>plot</strong>(Y) plots the columns of Y versus their index.
    If Y is complex, <strong>plot</strong>(Y) is equivalent to <strong>plot</strong>(real(Y),imag(Y)).
    In all other uses of <strong>plot</strong>, the imaginary part is ignored.
 
    Various line types, plot symbols and colors may be obtained with
    <strong>plot</strong>(X,Y,S) where S is a character string made from one element
    from any or all the following 3 columns:
 
           b     blue          .     point              -     solid
           g     green         o     circle             :     dotted
           r     red           x     x-mark             -.    dashdot 
           c     cyan          +     plus               --    dashed   
           m     magenta       *     star             (none)  no line
           y     yellow        s     square
           k     black         d     diamond
           w     white         v     triangle (down)
                               ^     triangle (up)
                               <     triangle (left)
                               >     triangle (right)
                               p     pentagram
                               h     hexagram
                          
    For example, <strong>plot</strong>(X,Y,'c+:') plots a cyan dotted line with a plus 
    at each data point; <strong>plot</strong>(X,Y,'bd') plots blue diamond at each data 
    point but does not draw any line.
 
    <strong>plot</strong>(X1,Y1,S1,X2,Y2,S2,X3,Y3,S3,...) combines the plots defined by
    the (X,Y,S) triples, where the X's and Y's are vectors or matrices 
    and the S's are strings.  
 
    For example, <strong>plot</strong>(X,Y,'y-',X,Y,'go') plots the data twice, with a
    solid yellow line interpolating green circles at the data points.
 
    The <strong>plot</strong> command, if no color is specified, makes automatic use of
    the colors specified by the axes ColorOrder property.  By default,
    <strong>plot</strong> cycles through the colors in the ColorOrder property.  For
    monochrome systems, <strong>plot</strong> cycles over the axes LineStyleOrder property.
 
    Note that RGB colors in the ColorOrder property may differ from
    similarly-named colors in the (X,Y,S) triples.  For example, the 
    second axes ColorOrder property is medium green with RGB [0 .5 0],
    while <strong>plot</strong>(X,Y,'g') plots a green line with RGB [0 1 0].
 
    If you do not specify a marker type, <strong>plot</strong> uses no marker. 
    If you do not specify a line style, <strong>plot</strong> uses a solid line.
 
    <strong>plot</strong>(AX,...) plots into the axes with handle AX.
 
    <strong>plot</strong> returns a column vector of handles to lineseries objects, one
    handle per plotted line. 
 
    The X,Y pairs, or X,Y,S triples, can be followed by 
    parameter/value pairs to specify additional properties 
    of the lines. For example, <strong>plot</strong>(X,Y,'LineWidth',2,'Color',[.6 0 0]) 
    will create a plot with a dark red line width of 2 points.
 
    Example
       x = -pi:pi/10:pi;
       y = tan(sin(x)) - sin(tan(x));
       plot(x,y,'--rs','LineWidth',2,...
                       'MarkerEdgeColor','k',...
                       'MarkerFaceColor','g',...
                       'MarkerSize',10)
 
    See also <a href="matlab:help plottools">plottools</a>, <a href="matlab:help semilogx">semilogx</a>, <a href="matlab:help semilogy">semilogy</a>, <a href="matlab:help loglog">loglog</a>, <a href="matlab:help plotyy">plotyy</a>, <a href="matlab:help plot3">plot3</a>, <a href="matlab:help grid">grid</a>,
    <a href="matlab:help title">title</a>, <a href="matlab:help xlabel">xlabel</a>, <a href="matlab:help ylabel">ylabel</a>, <a href="matlab:help axis">axis</a>, <a href="matlab:help axes">axes</a>, <a href="matlab:help hold">hold</a>, <a href="matlab:help legend">legend</a>, <a href="matlab:help subplot">subplot</a>, <a href="matlab:help scatter">scatter</a>.

    Overloaded methods:
       <a href="matlab:help phytree/plot">phytree/plot</a>
       <a href="matlab:help clustergram/plot">clustergram/plot</a>
       <a href="matlab:help HeatMap/plot">HeatMap/plot</a>
       <a href="matlab:help sfit/plot">sfit/plot</a>
       <a href="matlab:help cfit/plot">cfit/plot</a>
       <a href="matlab:help gpuArray/plot">gpuArray/plot</a>
       <a href="matlab:help fints/plot">fints/plot</a>
       <a href="matlab:help iddata/plot">iddata/plot</a>
       <a href="matlab:help idnlhw/plot">idnlhw/plot</a>
       <a href="matlab:help idnlarx/plot">idnlarx/plot</a>
       <a href="matlab:help cgrules/plot">cgrules/plot</a>
       <a href="matlab:help xregtwostage/plot">xregtwostage/plot</a>
       <a href="matlab:help xregtransient/plot">xregtransient/plot</a>
       <a href="matlab:help xregmodel/plot">xregmodel/plot</a>
       <a href="matlab:help xregarx/plot">xregarx/plot</a>
       <a href="matlab:help localmulti/plot">localmulti/plot</a>
       <a href="matlab:help localmod/plot">localmod/plot</a>
       <a href="matlab:help localavfit/plot">localavfit/plot</a>
       <a href="matlab:help sweepset/plot">sweepset/plot</a>
       <a href="matlab:help mdevtestplan/plot">mdevtestplan/plot</a>
       <a href="matlab:help cgdatasetnode/plot">cgdatasetnode/plot</a>
       <a href="matlab:help dspdata.plot">dspdata.plot</a>
       <a href="matlab:help LinearModel/plot">LinearModel/plot</a>
       <a href="matlab:help timeseries/plot">timeseries/plot</a>
       <a href="matlab:help wdectree/plot">wdectree/plot</a>
       <a href="matlab:help ntree/plot">ntree/plot</a>
       <a href="matlab:help dtree/plot">dtree/plot</a>
       <a href="matlab:help wvtree/plot">wvtree/plot</a>
       <a href="matlab:help rwvtree/plot">rwvtree/plot</a>
       <a href="matlab:help edwttree/plot">edwttree/plot</a>

    Reference page in Help browser
       <a href="matlab:doc plot">doc plot</a>

sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Undefined function or variable 'X'.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 6)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',6,0)">line 6</a>)
plot(X,Y,'LineWidth',2,'b:*')
} 
sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Error using <a href="matlab:helpUtils.errorDocCallback('plot')" style="font-weight:bold">plot</a>
Conversion to double from inline is not possible.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 6)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',6,0)">line 6</a>)
plot(x,inline(ekf),'LineWidth',2,'Color',[.6 0 0])
} 
help plot
 <strong>plot</strong>   Linear plot. 
    <strong>plot</strong>(X,Y) plots vector Y versus vector X. If X or Y is a matrix,
    then the vector is plotted versus the rows or columns of the matrix,
    whichever line up.  If X is a scalar and Y is a vector, disconnected
    line objects are created and plotted as discrete points vertically at
    X.
 
    <strong>plot</strong>(Y) plots the columns of Y versus their index.
    If Y is complex, <strong>plot</strong>(Y) is equivalent to <strong>plot</strong>(real(Y),imag(Y)).
    In all other uses of <strong>plot</strong>, the imaginary part is ignored.
 
    Various line types, plot symbols and colors may be obtained with
    <strong>plot</strong>(X,Y,S) where S is a character string made from one element
    from any or all the following 3 columns:
 
           b     blue          .     point              -     solid
           g     green         o     circle             :     dotted
           r     red           x     x-mark             -.    dashdot 
           c     cyan          +     plus               --    dashed   
           m     magenta       *     star             (none)  no line
           y     yellow        s     square
           k     black         d     diamond
           w     white         v     triangle (down)
                               ^     triangle (up)
                               <     triangle (left)
                               >     triangle (right)
                               p     pentagram
                               h     hexagram
                          
    For example, <strong>plot</strong>(X,Y,'c+:') plots a cyan dotted line with a plus 
    at each data point; <strong>plot</strong>(X,Y,'bd') plots blue diamond at each data 
    point but does not draw any line.
 
    <strong>plot</strong>(X1,Y1,S1,X2,Y2,S2,X3,Y3,S3,...) combines the plots defined by
    the (X,Y,S) triples, where the X's and Y's are vectors or matrices 
    and the S's are strings.  
 
    For example, <strong>plot</strong>(X,Y,'y-',X,Y,'go') plots the data twice, with a
    solid yellow line interpolating green circles at the data points.
 
    The <strong>plot</strong> command, if no color is specified, makes automatic use of
    the colors specified by the axes ColorOrder property.  By default,
    <strong>plot</strong> cycles through the colors in the ColorOrder property.  For
    monochrome systems, <strong>plot</strong> cycles over the axes LineStyleOrder property.
 
    Note that RGB colors in the ColorOrder property may differ from
    similarly-named colors in the (X,Y,S) triples.  For example, the 
    second axes ColorOrder property is medium green with RGB [0 .5 0],
    while <strong>plot</strong>(X,Y,'g') plots a green line with RGB [0 1 0].
 
    If you do not specify a marker type, <strong>plot</strong> uses no marker. 
    If you do not specify a line style, <strong>plot</strong> uses a solid line.
 
    <strong>plot</strong>(AX,...) plots into the axes with handle AX.
 
    <strong>plot</strong> returns a column vector of handles to lineseries objects, one
    handle per plotted line. 
 
    The X,Y pairs, or X,Y,S triples, can be followed by 
    parameter/value pairs to specify additional properties 
    of the lines. For example, <strong>plot</strong>(X,Y,'LineWidth',2,'Color',[.6 0 0]) 
    will create a plot with a dark red line width of 2 points.
 
    Example
       x = -pi:pi/10:pi;
       y = tan(sin(x)) - sin(tan(x));
       plot(x,y,'--rs','LineWidth',2,...
                       'MarkerEdgeColor','k',...
                       'MarkerFaceColor','g',...
                       'MarkerSize',10)
 
    See also <a href="matlab:help plottools">plottools</a>, <a href="matlab:help semilogx">semilogx</a>, <a href="matlab:help semilogy">semilogy</a>, <a href="matlab:help loglog">loglog</a>, <a href="matlab:help plotyy">plotyy</a>, <a href="matlab:help plot3">plot3</a>, <a href="matlab:help grid">grid</a>,
    <a href="matlab:help title">title</a>, <a href="matlab:help xlabel">xlabel</a>, <a href="matlab:help ylabel">ylabel</a>, <a href="matlab:help axis">axis</a>, <a href="matlab:help axes">axes</a>, <a href="matlab:help hold">hold</a>, <a href="matlab:help legend">legend</a>, <a href="matlab:help subplot">subplot</a>, <a href="matlab:help scatter">scatter</a>.

    Overloaded methods:
       <a href="matlab:help phytree/plot">phytree/plot</a>
       <a href="matlab:help clustergram/plot">clustergram/plot</a>
       <a href="matlab:help HeatMap/plot">HeatMap/plot</a>
       <a href="matlab:help sfit/plot">sfit/plot</a>
       <a href="matlab:help cfit/plot">cfit/plot</a>
       <a href="matlab:help gpuArray/plot">gpuArray/plot</a>
       <a href="matlab:help fints/plot">fints/plot</a>
       <a href="matlab:help iddata/plot">iddata/plot</a>
       <a href="matlab:help idnlhw/plot">idnlhw/plot</a>
       <a href="matlab:help idnlarx/plot">idnlarx/plot</a>
       <a href="matlab:help cgrules/plot">cgrules/plot</a>
       <a href="matlab:help xregtwostage/plot">xregtwostage/plot</a>
       <a href="matlab:help xregtransient/plot">xregtransient/plot</a>
       <a href="matlab:help xregmodel/plot">xregmodel/plot</a>
       <a href="matlab:help xregarx/plot">xregarx/plot</a>
       <a href="matlab:help localmulti/plot">localmulti/plot</a>
       <a href="matlab:help localmod/plot">localmod/plot</a>
       <a href="matlab:help localavfit/plot">localavfit/plot</a>
       <a href="matlab:help sweepset/plot">sweepset/plot</a>
       <a href="matlab:help mdevtestplan/plot">mdevtestplan/plot</a>
       <a href="matlab:help cgdatasetnode/plot">cgdatasetnode/plot</a>
       <a href="matlab:help dspdata.plot">dspdata.plot</a>
       <a href="matlab:help LinearModel/plot">LinearModel/plot</a>
       <a href="matlab:help timeseries/plot">timeseries/plot</a>
       <a href="matlab:help wdectree/plot">wdectree/plot</a>
       <a href="matlab:help ntree/plot">ntree/plot</a>
       <a href="matlab:help dtree/plot">dtree/plot</a>
       <a href="matlab:help wvtree/plot">wvtree/plot</a>
       <a href="matlab:help rwvtree/plot">rwvtree/plot</a>
       <a href="matlab:help edwttree/plot">edwttree/plot</a>

    Reference page in Help browser
       <a href="matlab:doc plot">doc plot</a>

uiopen('C:\Users\TEMP\AppData\Local\Temp\Rar$DIa0.271\erg4.m',1)
sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Error using <a href="matlab:helpUtils.errorDocCallback('plot')" style="font-weight:bold">plot</a>
Conversion to double from inline is not
possible.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 6)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',6,0)">line 6</a>)
plot(x,inline(ekf),'LineWidth',2,'Color',[.6 0
0])
} 
clc
help plot
 <strong>plot</strong>   Linear plot. 
    <strong>plot</strong>(X,Y) plots vector Y versus vector X. If X or Y is a matrix,
    then the vector is plotted versus the rows or columns of the matrix,
    whichever line up.  If X is a scalar and Y is a vector, disconnected
    line objects are created and plotted as discrete points vertically at
    X.
 
    <strong>plot</strong>(Y) plots the columns of Y versus their index.
    If Y is complex, <strong>plot</strong>(Y) is equivalent to <strong>plot</strong>(real(Y),imag(Y)).
    In all other uses of <strong>plot</strong>, the imaginary part is ignored.
 
    Various line types, plot symbols and colors may be obtained with
    <strong>plot</strong>(X,Y,S) where S is a character string made from one element
    from any or all the following 3 columns:
 
           b     blue          .     point              -     solid
           g     green         o     circle             :     dotted
           r     red           x     x-mark             -.    dashdot 
           c     cyan          +     plus               --    dashed   
           m     magenta       *     star             (none)  no line
           y     yellow        s     square
           k     black         d     diamond
           w     white         v     triangle (down)
                               ^     triangle (up)
                               <     triangle (left)
                               >     triangle (right)
                               p     pentagram
                               h     hexagram
                          
    For example, <strong>plot</strong>(X,Y,'c+:') plots a cyan dotted line with a plus 
    at each data point; <strong>plot</strong>(X,Y,'bd') plots blue diamond at each data 
    point but does not draw any line.
 
    <strong>plot</strong>(X1,Y1,S1,X2,Y2,S2,X3,Y3,S3,...) combines the plots defined by
    the (X,Y,S) triples, where the X's and Y's are vectors or matrices 
    and the S's are strings.  
 
    For example, <strong>plot</strong>(X,Y,'y-',X,Y,'go') plots the data twice, with a
    solid yellow line interpolating green circles at the data points.
 
    The <strong>plot</strong> command, if no color is specified, makes automatic use of
    the colors specified by the axes ColorOrder property.  By default,
    <strong>plot</strong> cycles through the colors in the ColorOrder property.  For
    monochrome systems, <strong>plot</strong> cycles over the axes LineStyleOrder property.
 
    Note that RGB colors in the ColorOrder property may differ from
    similarly-named colors in the (X,Y,S) triples.  For example, the 
    second axes ColorOrder property is medium green with RGB [0 .5 0],
    while <strong>plot</strong>(X,Y,'g') plots a green line with RGB [0 1 0].
 
    If you do not specify a marker type, <strong>plot</strong> uses no marker. 
    If you do not specify a line style, <strong>plot</strong> uses a solid line.
 
    <strong>plot</strong>(AX,...) plots into the axes with handle AX.
 
    <strong>plot</strong> returns a column vector of handles to lineseries objects, one
    handle per plotted line. 
 
    The X,Y pairs, or X,Y,S triples, can be followed by 
    parameter/value pairs to specify additional properties 
    of the lines. For example, <strong>plot</strong>(X,Y,'LineWidth',2,'Color',[.6 0 0]) 
    will create a plot with a dark red line width of 2 points.
 
    Example
       x = -pi:pi/10:pi;
       y = tan(sin(x)) - sin(tan(x));
       plot(x,y,'--rs','LineWidth',2,...
                       'MarkerEdgeColor','k',...
                       'MarkerFaceColor','g',...
                       'MarkerSize',10)
 
    See also <a href="matlab:help plottools">plottools</a>, <a href="matlab:help semilogx">semilogx</a>, <a href="matlab:help semilogy">semilogy</a>, <a href="matlab:help loglog">loglog</a>, <a href="matlab:help plotyy">plotyy</a>, <a href="matlab:help plot3">plot3</a>, <a href="matlab:help grid">grid</a>,
    <a href="matlab:help title">title</a>, <a href="matlab:help xlabel">xlabel</a>, <a href="matlab:help ylabel">ylabel</a>, <a href="matlab:help axis">axis</a>, <a href="matlab:help axes">axes</a>, <a href="matlab:help hold">hold</a>, <a href="matlab:help legend">legend</a>, <a href="matlab:help subplot">subplot</a>, <a href="matlab:help scatter">scatter</a>.

    Overloaded methods:
       <a href="matlab:help phytree/plot">phytree/plot</a>
       <a href="matlab:help clustergram/plot">clustergram/plot</a>
       <a href="matlab:help HeatMap/plot">HeatMap/plot</a>
       <a href="matlab:help sfit/plot">sfit/plot</a>
       <a href="matlab:help cfit/plot">cfit/plot</a>
       <a href="matlab:help gpuArray/plot">gpuArray/plot</a>
       <a href="matlab:help fints/plot">fints/plot</a>
       <a href="matlab:help iddata/plot">iddata/plot</a>
       <a href="matlab:help idnlhw/plot">idnlhw/plot</a>
       <a href="matlab:help idnlarx/plot">idnlarx/plot</a>
       <a href="matlab:help cgrules/plot">cgrules/plot</a>
       <a href="matlab:help xregtwostage/plot">xregtwostage/plot</a>
       <a href="matlab:help xregtransient/plot">xregtransient/plot</a>
       <a href="matlab:help xregmodel/plot">xregmodel/plot</a>
       <a href="matlab:help xregarx/plot">xregarx/plot</a>
       <a href="matlab:help localmulti/plot">localmulti/plot</a>
       <a href="matlab:help localmod/plot">localmod/plot</a>
       <a href="matlab:help localavfit/plot">localavfit/plot</a>
       <a href="matlab:help sweepset/plot">sweepset/plot</a>
       <a href="matlab:help mdevtestplan/plot">mdevtestplan/plot</a>
       <a href="matlab:help cgdatasetnode/plot">cgdatasetnode/plot</a>
       <a href="matlab:help dspdata.plot">dspdata.plot</a>
       <a href="matlab:help LinearModel/plot">LinearModel/plot</a>
       <a href="matlab:help timeseries/plot">timeseries/plot</a>
       <a href="matlab:help wdectree/plot">wdectree/plot</a>
       <a href="matlab:help ntree/plot">ntree/plot</a>
       <a href="matlab:help dtree/plot">dtree/plot</a>
       <a href="matlab:help wvtree/plot">wvtree/plot</a>
       <a href="matlab:help rwvtree/plot">rwvtree/plot</a>
       <a href="matlab:help edwttree/plot">edwttree/plot</a>

    Reference page in Help browser
       <a href="matlab:doc plot">doc plot</a>

help splot

splot not found.

Use the Help browser search field to <a href="matlab:docsearch splot">search the documentation</a>, or
type "<a href="matlab:help help">help help</a>" for help command options, such as help for methods.

help esplot

esplot not found.

Use the Help browser search field to <a href="matlab:docsearch esplot">search the documentation</a>, or
type "<a href="matlab:help help">help help</a>" for help command options, such as help for methods.

clc
help plot
 <strong>plot</strong>   Linear plot. 
    <strong>plot</strong>(X,Y) plots vector Y versus vector X. If X or Y is a matrix,
    then the vector is plotted versus the rows or columns of the matrix,
    whichever line up.  If X is a scalar and Y is a vector, disconnected
    line objects are created and plotted as discrete points vertically at
    X.
 
    <strong>plot</strong>(Y) plots the columns of Y versus their index.
    If Y is complex, <strong>plot</strong>(Y) is equivalent to <strong>plot</strong>(real(Y),imag(Y)).
    In all other uses of <strong>plot</strong>, the imaginary part is ignored.
 
    Various line types, plot symbols and colors may be obtained with
    <strong>plot</strong>(X,Y,S) where S is a character string made from one element
    from any or all the following 3 columns:
 
           b     blue          .     point              -     solid
           g     green         o     circle             :     dotted
           r     red           x     x-mark             -.    dashdot 
           c     cyan          +     plus               --    dashed   
           m     magenta       *     star             (none)  no line
           y     yellow        s     square
           k     black         d     diamond
           w     white         v     triangle (down)
                               ^     triangle (up)
                               <     triangle (left)
                               >     triangle (right)
                               p     pentagram
                               h     hexagram
                          
    For example, <strong>plot</strong>(X,Y,'c+:') plots a cyan dotted line with a plus 
    at each data point; <strong>plot</strong>(X,Y,'bd') plots blue diamond at each data 
    point but does not draw any line.
 
    <strong>plot</strong>(X1,Y1,S1,X2,Y2,S2,X3,Y3,S3,...) combines the plots defined by
    the (X,Y,S) triples, where the X's and Y's are vectors or matrices 
    and the S's are strings.  
 
    For example, <strong>plot</strong>(X,Y,'y-',X,Y,'go') plots the data twice, with a
    solid yellow line interpolating green circles at the data points.
 
    The <strong>plot</strong> command, if no color is specified, makes automatic use of
    the colors specified by the axes ColorOrder property.  By default,
    <strong>plot</strong> cycles through the colors in the ColorOrder property.  For
    monochrome systems, <strong>plot</strong> cycles over the axes LineStyleOrder property.
 
    Note that RGB colors in the ColorOrder property may differ from
    similarly-named colors in the (X,Y,S) triples.  For example, the 
    second axes ColorOrder property is medium green with RGB [0 .5 0],
    while <strong>plot</strong>(X,Y,'g') plots a green line with RGB [0 1 0].
 
    If you do not specify a marker type, <strong>plot</strong> uses no marker. 
    If you do not specify a line style, <strong>plot</strong> uses a solid line.
 
    <strong>plot</strong>(AX,...) plots into the axes with handle AX.
 
    <strong>plot</strong> returns a column vector of handles to lineseries objects, one
    handle per plotted line. 
 
    The X,Y pairs, or X,Y,S triples, can be followed by 
    parameter/value pairs to specify additional properties 
    of the lines. For example, <strong>plot</strong>(X,Y,'LineWidth',2,'Color',[.6 0 0]) 
    will create a plot with a dark red line width of 2 points.
 
    Example
       x = -pi:pi/10:pi;
       y = tan(sin(x)) - sin(tan(x));
       plot(x,y,'--rs','LineWidth',2,...
                       'MarkerEdgeColor','k',...
                       'MarkerFaceColor','g',...
                       'MarkerSize',10)
 
    See also <a href="matlab:help plottools">plottools</a>, <a href="matlab:help semilogx">semilogx</a>, <a href="matlab:help semilogy">semilogy</a>, <a href="matlab:help loglog">loglog</a>, <a href="matlab:help plotyy">plotyy</a>, <a href="matlab:help plot3">plot3</a>, <a href="matlab:help grid">grid</a>,
    <a href="matlab:help title">title</a>, <a href="matlab:help xlabel">xlabel</a>, <a href="matlab:help ylabel">ylabel</a>, <a href="matlab:help axis">axis</a>, <a href="matlab:help axes">axes</a>, <a href="matlab:help hold">hold</a>, <a href="matlab:help legend">legend</a>, <a href="matlab:help subplot">subplot</a>, <a href="matlab:help scatter">scatter</a>.

    Overloaded methods:
       <a href="matlab:help phytree/plot">phytree/plot</a>
       <a href="matlab:help clustergram/plot">clustergram/plot</a>
       <a href="matlab:help HeatMap/plot">HeatMap/plot</a>
       <a href="matlab:help sfit/plot">sfit/plot</a>
       <a href="matlab:help cfit/plot">cfit/plot</a>
       <a href="matlab:help gpuArray/plot">gpuArray/plot</a>
       <a href="matlab:help fints/plot">fints/plot</a>
       <a href="matlab:help iddata/plot">iddata/plot</a>
       <a href="matlab:help idnlhw/plot">idnlhw/plot</a>
       <a href="matlab:help idnlarx/plot">idnlarx/plot</a>
       <a href="matlab:help cgrules/plot">cgrules/plot</a>
       <a href="matlab:help xregtwostage/plot">xregtwostage/plot</a>
       <a href="matlab:help xregtransient/plot">xregtransient/plot</a>
       <a href="matlab:help xregmodel/plot">xregmodel/plot</a>
       <a href="matlab:help xregarx/plot">xregarx/plot</a>
       <a href="matlab:help localmulti/plot">localmulti/plot</a>
       <a href="matlab:help localmod/plot">localmod/plot</a>
       <a href="matlab:help localavfit/plot">localavfit/plot</a>
       <a href="matlab:help sweepset/plot">sweepset/plot</a>
       <a href="matlab:help mdevtestplan/plot">mdevtestplan/plot</a>
       <a href="matlab:help cgdatasetnode/plot">cgdatasetnode/plot</a>
       <a href="matlab:help dspdata.plot">dspdata.plot</a>
       <a href="matlab:help LinearModel/plot">LinearModel/plot</a>
       <a href="matlab:help timeseries/plot">timeseries/plot</a>
       <a href="matlab:help wdectree/plot">wdectree/plot</a>
       <a href="matlab:help ntree/plot">ntree/plot</a>
       <a href="matlab:help dtree/plot">dtree/plot</a>
       <a href="matlab:help wvtree/plot">wvtree/plot</a>
       <a href="matlab:help rwvtree/plot">rwvtree/plot</a>
       <a href="matlab:help edwttree/plot">edwttree/plot</a>

    Reference page in Help browser
       <a href="matlab:doc plot">doc plot</a>

sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Error using <a href="matlab:helpUtils.errorDocCallback('plot')" style="font-weight:bold">plot</a>
Conversion to double from inline is not
possible.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 8)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',8,0)">line 8</a>)
plot(x,f,'LineWidth',2,'Color',[.6 0 0])
} 
sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Error using <a href="matlab:helpUtils.errorDocCallback('plot')" style="font-weight:bold">plot</a>
Conversion to double from inline is not
possible.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 7)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',7,0)">line 7</a>)
plot(x,f);
} 
sc
 
f =
 
2*exp(2*x)
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x)]
 
 
f =
 
[ 2*exp(2*x), 4*exp(2*x), 8*exp(2*x), 16*exp(2*x)]
 
{Error using <a href="matlab:helpUtils.errorDocCallback('plot')" style="font-weight:bold">plot</a>
Conversion to double from inline is not
possible.

Error in <a href="matlab:helpUtils.errorDocCallback('sc', 'G:\ce213\Matlab\test5\sc.m', 7)" style="font-weight:bold">sc</a> (<a href="matlab: opentoline('G:\ce213\Matlab\test5\sc.m',7,0)">line 7</a>)
plot(x,f);
} 
diary off
