用MATLAB绘制出单位阶跃函数,源代码怎么写

2025-04-14 21:50:34
推荐回答(1个)
回答1:

可这样:
syms x
ezplot(heaviside(x), [-2, 2])
title('单位阶跃函数图')