Python Learning matplotlib Combat

Source: Internet
Author: User
Tags cos sin
Import NumPy as Npdef main ():    #print ("Hello")    #line    import matplotlib.pyplot as Plt    x=np.linspace (- Np.pi,np.pi,256,endpoint=true)    #print (x)    c,s = Np.cos (x), Np.sin (x)    plt.figure (1) #绘制第一个图    Plt.plot (x,c,color= "Blue", linewidth=1.0,linestyle= "-", label= "COS", alpha=0.5) #绘制cos    plt.plot (x,s, "r*", label= "SIN") # Draw sin    plt.title ("Cos & sin") #添加标题    AX=PLT.GCA () #轴的编辑器    ax.spines["right"].set_color ("none")    ax.spines["Top"].set_color ("none")    ax.spines["left"].set_position (("Data", 0)    ax.spines[" Bottom "].set_position ((" Data ", 0))    plt.show () if __name__ = = ' __main__ ':    Main ()

  

Python Learning matplotlib Combat

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.