中文字幕理论片,69视频免费在线观看,亚洲成人app,国产1级毛片,刘涛最大尺度戏视频,欧美亚洲美女视频,2021韩国美女仙女屋vip视频

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
Python中用matplotlib.pyplot畫圖總結

1、

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import numpy as np
import matplotlib.pyplot as plt
def f1(t):     #根據橫坐標t,定義第一條曲線的縱坐標
    return np.exp(-t)*np.cos(2*np.pi*t)
def f2(t):     #根據橫坐標t,定義第二條曲線的縱坐標
    return np.sin(2*np.pi*t)*np.cos(3*np.pi*t)
#定義很坐標的值,來自于np.arange(0.0,5.0,0.02),
#..表示0--5的等差數(shù)列的列表[0,0.02,0.04......4.8]不包括5.0
= np.arange(0.0,5.0,0.02
#定義一個畫布
plt.figure()
#參數(shù)分析:plt.plot(橫坐標值,縱坐標值,"color",由legend()建的圖例中的label,linewidth=)
#plt.plot()函數(shù),將自動與距離最近的figure對應
#label的值$...$之間的公式由此頁面可得http://www.codecogs.com/latex/eqneditor.php
plt.plot(t,f1(t),"g-",label="$f(t)=e^{-t} \cdot \cos (2 \pi t)$"
plt.plot(t,f2(t),"r-.",label="$g(t)=\sin (2 \pi t) \cos (3 \pi t)$",linewidth=2)
#確定坐標軸的值、坐標軸的label,以及畫布的標題
plt.axis([0.0,5.01,-1.0,1.5])
plt.xlabel("t")
plt.ylabel("v")
plt.title("a simple example")
plt.grid(True#生成網格
plt.legend()   #產生右上角的圖例   
plt.show()
###matplotlib.pyplot中的add_subplot(2,3,2)函數(shù)參數(shù),用于分畫布###
#建立一個畫布fig2,可以理解為畫布對象
fig2=plt.figure()
#把fig2分為:2行1列,選擇第1塊用。注:add_subplot(,,)函數(shù)是要有對象的,如這里用了fig2
ax=fig2.add_subplot(2,1,1)
plt.plot(t,t/3,"r-",label="$11$",linewidth=3)
plt.legend()
#把fig2分為:2行2列,選擇第4塊用。
ax=fig2.add_subplot(2,2,4)  
plt.plot(t,t/3,"b-",label="$11$")
plt.legend()
plt.show()

2、修改jupyter notebook的新建文件默認目錄:

    (1)、cmd中鍵入:jupyter notebook --generate-config

          系統(tǒng)的返回結果會是一個路徑。

    (2)、打開..\upyter_notebook_config.py的文件,將設置自己的路徑(記得把#去掉),如圖:

     (3)重新啟動,即可,鍵入:jupyter notebook。

3、

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- coding: utf-8 -*-
  
import matplotlib.pylab as mtp
import numpy.random as nprd
  
  
#子圖 subplot() 行、列,當前所在區(qū)域
#匯3個圖,上面2個,下面一個
#左上角圖
mtp.subplot(2,2,1)
x1=nprd.random_integers(10,20,50)
y1=nprd.random_integers(10,30,50)
mtp.plot(x1,y1,'o')
mtp.title("open widy")
  
#右上角圖
mtp.subplot(2,2,2)
x2=[1,3,5,7,9]
mtp.hist(x2,color='b')
mtp.title("spy der")
  
#下部圖
mtp.subplot(2,1,2)
x3=nprd.normal(50,10,1000)
y3=nprd.normal(100,20,1000)
mtp.plot(x3,y3,'-')
mtp.title("amt tol")
mtp.show()

本站僅提供存儲服務,所有內容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權內容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
python的matplotlib的三角函數(shù)sin和cos的靜態(tài)作圖詳解
Python繪制參數(shù)方程圖
matplotlib.pyplot中繪畫操作
Python圖表繪制:matplotlib繪圖庫入門
matplotlib命令與格式:圖像(figure)與子區(qū)域(axes)布局與規(guī)劃
【Matplotlib】繪圖常見設置說明
更多類似文章 >>
生活服務
熱點新聞
分享 收藏 導長圖 關注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服