📄 da_plt1.m
字号:
function [out]=da_plt1(y,yest,xt,yt,t);
%
% General model result graph printing routine.
%
% [out]=da_plt1(y,yest,xt,yt,t,l1,l2);
%
% out = nul result
%
% y = actual value of output
% yest = estimated output
% xt = x title
% yt = y title
% t = graph title
%
% The following legends are automatically added:
%
% y: Actual
% yest: PRedicted
%
% The routine sends the graph either to the clipboard
% or to the currently selected windows printer.
%
%
% Bring up a new window
%
win=figure;
%
% Plot the lines
%
hold on;
plot(y,'b');
plot(yest,'g');
xlabel(xt);
ylabel(yt);
title(t);
legend('Actual','Predicted');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -