?? 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 + -