Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

ตัวยกในแปลง Python


ในการใส่ superscript ใน Python เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • สร้างคะแนนสำหรับ a และ f โดยใช้ numpy

  • พล็อต f =ma เส้นโค้งโดยใช้ plot() วิธีที่มีป้ายกำกับ f=ma.

  • เพิ่มชื่อเรื่องของเนื้อเรื่องด้วยตัวยก เช่น kgms-2

  • เพิ่ม xlabel สำหรับพล็อตที่มีตัวยก เช่น ms-2

  • เพิ่ม ylabel สำหรับพล็อตที่มีตัวยกคือกก.

  • หากต้องการวางคำอธิบาย ให้ใช้ legend() วิธีการ

  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
a = np.linspace(1, 10, 100)
m = 20
f = m*a
plt.plot(a, f, c="red", lw=5, label="f=ma")
plt.title("Force $\mathregular{kgms^{-2}}$")
plt.xlabel("Acceleration $\mathregular{ms^{-2}}$")
plt.ylabel("Acceleration $\mathregular{kg}$")
plt.legend()
plt.show()

ผลลัพธ์

ตัวยกในแปลง Python