www.gusucode.com > graphics 案例源码程序 matlab代码 > graphics/FillinPlotMarkersExample.m

    %% Fill in Plot Markers  
% Create a stem plot and fill in the circles that terminate each stem.   

% Copyright 2015 The MathWorks, Inc.


%%  
X = linspace(0,10,20)';
Y = (exp(0.25*X));
stem(X,Y,'filled')