Zlecanie: simplePlot.m

File simplePlot.m, 333 bytes (added by jkonczak, 13 years ago)
Line 
1% Przyk³ad wziêty z http://www.mathworks.com/help/techdoc/ref/plot.html
2handle = figure;
3x = -pi:pi/10:pi;
4y = tan(sin(x)) - sin(tan(x));
5plot(x,y,'--rs','LineWidth',2,...
6                'MarkerEdgeColor','k',...
7                'MarkerFaceColor','g',...
8                'MarkerSize',10)
9print(handle, '-dpdf', 'plot.pdf')