第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

從 Python 中的嵌套 for 循環(huán)中繪制子圖

從 Python 中的嵌套 for 循環(huán)中繪制子圖

蝴蝶刀刀 2022-10-06 20:19:45
我正在嘗試為不同的 mu 和 sigma 值繪制線圖(漂移布朗運(yùn)動(dòng)),我有一個(gè)函數(shù)可以迭代可能的 mu 值和可能的 sigma 值的列表,然后它應(yīng)該返回結(jié)果圖。問(wèn)題是我不確定如何使subplots返回所需的行數(shù)。我給了它正確的nrows,ncols但問(wèn)題出在索引上。有沒(méi)有人有辦法解決這個(gè)問(wèn)題?我在下面提供了代碼和錯(cuò)誤消息,# Drifted BM for varying values mu and sigma respectivelydef DriftedBMTest2(nTraj=50,T=5.0,dt=0.01,n=5, sigma = [0.1,1.0,2], mulist=[0,0.5,1,1.5], ValFSize=(18,14)):    nMu = len(mulist)    nSigma = len(mulist)    # Discretize, dt =  time step = $t_{j+1}- t_{j}$    dt = T/(n-1)    # Loop on different value sigma    for z in range(nSigma):         # Loop on different value Mu        for k in range(nMu):            n=int(T/dt)            x=np.zeros(n+1,float)            # Create plot space             temp = nSigma*nMu/2            plt.subplot(temp,2,k+1)            plt.title("Drifted BM $\sigma$={}, $\mu$={}".format(sigma[z],mulist[k]))             plt.xlabel(r'$t$')            plt.ylabel(r'$W_t$');            # Container for colours for each trajectory            colors = plt.cm.jet(np.linspace(0,1,nTraj))            # Generate many trajectories            for j in range(nTraj):                # Time simulation                # Add the time * constant(mu)                for i in range(n):                    x[i+1]=x[i]+np.sqrt(dt)*np.random.randn() + i*mulist[k]                # Scale Each Tradjectory                x = x * sigma[z]                # Plot trajectory just computed                plt.plot(np.linspace(0,T,n+1),x,'b-',alpha=0.3, color=colors[j], lw=3.0)DriftedBMTest2( sigma = [1,2], mulist=[-2,1] )然后我得到前兩個(gè)圖,但不是全部,以及下面的錯(cuò)誤。MatplotlibDeprecationWarning: Adding an axes using the same arguments as a previous axes currently reuses the earlier instance.  In a future version, a new instance will always be created and returned.  Meanwhile, this warning can be suppressed, and the future behavior ensured, by passing a unique label to each axes instance.抱歉,如果這是一個(gè)不好的問(wèn)題,我是 Python 新手,但我們將不勝感激。
查看完整描述

1 回答

?
翻過(guò)高山走不出你

TA貢獻(xiàn)1875條經(jīng)驗(yàn) 獲得超3個(gè)贊

嘗試fig = plt.figure()在兩個(gè) for 循環(huán)之間添加


for z in range(nSigma): 

    # Loop on different value Mu

    fig = plt.figure()   # <---- Line added here

    for k in range(nMu):

如果這不能提供所需的布局,您可以嘗試將其移動(dòng)到內(nèi)部 for 循環(huán)


for z in range(nSigma): 

    # Loop on different value Mu

    for k in range(nMu):

        fig = plt.figure()  # <---- Line added here


查看完整回答
反對(duì) 回復(fù) 2022-10-06
  • 1 回答
  • 0 關(guān)注
  • 293 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)