当前位置: 首页 > 问答 > Python编程 > 问答详情

python中怎样画分段函数?

09月27日 11:26219人阅读
许老师 Python编程

绘制分段函数:y=4sin(4πt)-sgn(t-0.3)-sgn(0.72-t)

import numpy as np
import matplotlib.pyplot as plt
def sgn(x):
    if x > 0:
        return 1
    elif x < 0:
        return -1
    else:
        return 0

t = np.arange(0, 1, 0.01)
y = []
for i in t:
    y_1 = 4 * np.sin(4 * np.pi * i) - sgn(i - 0.3) - sgn(0.72 - i)
    y.append(y_1)
plt.plot(t, y)
plt.xlabel("t")
plt.ylabel("y")
plt.title("Heavsine")
plt.show()

效果如下:

更多Python知识请关注Python自学网。

来自标签:

职业技能申请领取
您的姓名
您的电话
意向课程
点击领取

环球青藤

官方QQ

扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群

问答来自

许老师 Python编程
好评率85% 浏览219

相关问题

Python中int与bytes如何相互转换?
许老师 Python编程
python中如何删除list元素?
张老师 Python编程
如何使用python中range()函数实现逆序遍历?
谷老师 Python编程
课程咨询 学员服务 公众号

扫描关注微信公众号

APP

扫描下载APP

返回顶部