function drawgraph(coords) %DRAWGRAPH Plot a curve from the specified x and y coordinates contained in the coords array. % DRAWGRAPH (coords) Plots a curve from the specified coordinate values % in a MATLAB figure window. % This file is used as an example for the MATLAB Builder NE product. % Copyright 2001-2007 The MathWorks, Inc. % $Revision: 1.1.6.1 $ $Date: 2008/06/24 17:10:11 $ plot(coords(1,:), coords(2,:));