在Matlab中画出函数ReLU(x)=max(0,x)及其导数在同一直角坐标轴上的图像
时间: 2023-06-24 18:04:44 浏览: 287
matlab绘制正弦函数图像
以下是实现ReLU函数及其导数的Matlab代码和图像:
```matlab
% 定义ReLU函数
relu = @(x) max(0, x);
% 定义ReLU函数的导数
relu_derivative = @(x) (x >= 0);
% 绘制函数图像
x = -5:0.1:5;
y = relu(x);
y_derivative = relu_derivative(x);
figure;
plot(x, y, 'DisplayName', 'ReLU(x)');
hold on;
plot(x, y_derivative, 'DisplayName', 'ReLU\'(x)');
hold off;
grid on;
xlabel('x');
ylabel('y');
title('ReLU函数及其导数');
legend;
```
绘制的图像如下所示:
![ReLU函数及其导数图像](https://img-blog.csdnimg.cn/20210707151824258.png)
阅读全文