📄 plot.m
字号:
function plot(A,x0,x1,linesty)% plot.m Plot method for myline class. Called as%% plot(A,x0,x1,linesty)%% INPUT PARAMETERS% A : a myline object% x0,x1 : domain over which the line will be plotted% linesty : linestyle (optional)x = [x0,x1];if nargin == 3 plot(x,yval(A,x))elseif nargin == 4 plot(x,yval(A,x),linesty)end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -