📄 example9_4.m
字号:
% purelin函数
n=(-5:0.1:5);
a=purelin(n);
subplot(221)
plot(n,a);
title('purelin函数')
grid
%logsig函数
a=logsig(n);
subplot(222)
plot(n,a);
title('logsig函数')
grid
%tansig函数
a=tansig(n);
subplot(223)
plot(n,a);
title('tansi函数')
grid
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -