【转自:http://blog.****.net/fendoubasaonian/article/details/52974608】
%JOINT Summary of this function goes here
% Detailed explanation goes here
t1 = linspace(-10,10,500);
t2 = linspace(-10,10,500);
t3 = linspace(-10,10,500);
% zhx = -12.1*sin(2*pi*(time-0.25))-abs(12.1*sin(2*pi*(time-0.25)));
% zhx = 0;
a = 1;
c = 0;
% sigmod & tanh
sigmod = sigmf(t1,[a c])
tan_h = tanh(t2);
max_f = max(0,t3);
%激活函数
subplot(2,2,1);
plot(t1, sigmod,\'r-\');
legend(\'sigmoid\')
title(\'sigmoid函数\')
axis([-10, 10, -1, 1]) % 坐标轴的显示范围
set(gca, \'XGrid\',\'on\'); % X轴的网格
set(gca, \'YGrid\',\'on\'); % Y轴的网格
subplot(2,2,2);
plot(t2,tan_h,\'b-\');
legend(\'tanh\')
title(\'tanh函数\')
axis([-10, 10, -1, 1]) % 坐标轴的显示范围
set(gca, \'XGrid\',\'on\'); % X轴的网格
set(gca, \'YGrid\',\'on\'); % Y轴的网格
subplot(2,2,3);
plot(t3,max_f,\'c-\');
legend(\'max(0,x)\')
title(\'max(0,x)函数\')
axis([-10, 10, -10, 10]) % 坐标轴的显示范围
set(gca, \'XGrid\',\'on\'); % X轴的网格
set(gca, \'YGrid\',\'on\'); % Y轴的网格
相关文章
- 激活函数matlab代码
- matlab符号表达式的化简常用命令函数
- MATLAB中“repmat”与“cat”函数的用法
- Discuz!开发之HTML转Discuz代码(bbcode)函数html2bbcode() - chenjian
- MATLAB环境下基于LSTM模型的癫痫发作检测方法-提出一种基于LSTM模型的癫痫发作检测方法,算法程序运行环境为MATLAB R2021b,执行基于深度学习(LSTM)的癫痫发作自动检测,程序运行需要GPU,需要一定内存,部分代码如下:
- 语音信号特征提取——梅尔频率倒谱系数MFCC(含Matlab代码)
- 逆滤波和维纳滤波(附Matlab完整代码)
- MATLAB GUI 纯代码编写
- 生物信息学入门 heatmap.2函数绘制热图(heatmap) 数据结构 代码 结果解读
- matlab中的interp2插值函数