drawplot.m

来自「matlab实用教程」· M 代码 · 共 11 行

M
11
字号
function drawplot(x, y)
%DRAWPLOT Plot a curve from x and y arrays.
%   DRAWPLOT(X,Y) Plots a curve from x and y arrays in a MATLAB
%   figure window.  This file is used as an example
%   for the MATLAB Builder for Java Language product.

%   Copyright 2001-2006 The MathWorks, Inc.
%   $Revision: 1.1.8.1 $  $Date: 2006/05/05 15:55:37 $

plot(x, y);

⌨️ 快捷键说明

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