drawgraph.m

来自「开发环境: Matlab Version 7.8.0.347(R2009a) 」· M 代码 · 共 11 行

M
11
字号
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,:));

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?