ex1_8.m
来自「Programs for the book Advanced Engineeri」· M 代码 · 共 13 行
M
13 行
% EX1_8.M Plot x(t) by calling function clxfunct(t)
t=[0:.01:1.5]; % Define t values
% Call function
x=clxfunct(t);
% Plot the results with a grid
clf % Clear figures
plot(t,x)
grid
% End file
%
% Add labels and annotation to the plot
%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?