首页 > 学院 > 开发设计 > 正文

MATLAB 画Line _Plot 2D

2019-11-11 03:18:25
字体:
来源:转载
供稿:网友

% Load data for the stock indices load IndexData dates values series

% Plot the stock index values versus time figure plot(dates, values)

% Use dateticks for the x axis datetick(‘x’)

% Add title and axis labels xlabel(‘Date’) ylabel(‘Index Value’) title(‘Relative Daily Index Closings’)

% Add a legend in the top, left corner legend(series, ‘Location’, ‘NorthWest’)

这里写图片描述


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表