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

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

如何使用 matplotlib 反轉(zhuǎn)函數(shù)的軸

如何使用 matplotlib 反轉(zhuǎn)函數(shù)的軸

慕仙森 2022-10-25 10:43:56
我有以下功能,我正在尋找的是反轉(zhuǎn) x 和 y 軸。import numpy as npimport matplotlib.pyplot as pltfig = plt.figure()ax = fig.add_subplot(1, 1, 1)major_ticks = np.arange(-2, 10+2, 1)minor_ticks = np.arange(-2, 10+2, 0.25)ax.set_xticks(major_ticks)ax.set_xticks(minor_ticks, minor=True)ax.set_yticks(major_ticks)ax.set_yticks(minor_ticks, minor=True)ax.grid(which='both')ax.grid(which='minor', alpha=0.2)ax.grid(which='major', alpha=0.5)plt.title('Image')plt.xlabel('Height (m)')plt.ylabel('Length (m)')plt.axis('equal')function = np.array([0, 0.52, 0.92, 0.8])    plt.plot(function)下圖說(shuō)明了它的外觀,最好的問(wèn)候。
查看完整描述

1 回答

?
largeQ

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

plot命令允許您同時(shí)指定兩者x,y但是當(dāng)您使用單個(gè)向量調(diào)用它時(shí),它假定第一個(gè)向量是整數(shù)列表。所以要反轉(zhuǎn)繪圖,創(chuàng)建默認(rèn)值x,然后交換xy.

http://img1.sycdn.imooc.com//63574ecf000165f605730319.jpg

plt.plot(function, np.arange(4), '.-') # function is now treated as x, and I've created the default x and am using it for y.

此外,我重命名了軸并刪除了大部分格式,所以這看起來(lái)正確,但唯一有趣的變化是plot命令。


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

添加回答

舉報(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)