python绘制离散函数图像

import matplotlib.pyplot as plt
import numpy as np
def x(n):#定义函数
    if n>=-4 and n <= -1:
        y = 2*n +10
        return y
    elif n >= 0 and n<=4:
        return 6
    else:
        return 0
t = np.arange(-10,11)#设置自变量
y = []#设置应变量
for i in t:
    y_1 = x(i)
    y.append(y_1)
plt.xlabel("n")
plt.ylabel("x(n)")
plt.title("xiti1.1(1)")
plt.stem(t,y)#绘制火柴图
plt.show()#显示

绘制x(n)=\left\{\begin{matrix} 2n+10 & -4<=n<=-1\\ 6& 0<=n<=4\\ 0& other \end{matrix}\right.的图像。

python绘制离散函数图像_第1张图片

 

你可能感兴趣的:(python,numpy,开发语言)