真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python的余弦函數(shù),python怎么計(jì)算余弦值

Python繪制正弦余弦函數(shù)用到哪些函數(shù)?

def func_sin():

我們提供的服務(wù)有:做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、丹陽ssl等。為上千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的丹陽網(wǎng)站制作公司

# 準(zhǔn)備 X 軸的數(shù)據(jù), 0~10分成90段

x = np.linspace(0, 10, 90)

# 準(zhǔn)備 y 軸的數(shù)據(jù)

y = []

for i in x:

print(i)

y.append(math.sin(i))?

# 繪制線圖

plt.plot(x, y,c='r' )

# 添加標(biāo)題

plt.title("y = sin(x)")

# 添加 x 軸的信息

plt.xlabel("x")

# 添加 y 軸的信息

plt.ylabel("y")

# 顯示線圖

plt.show()

Python--math庫

Python math 庫提供許多對(duì)浮點(diǎn)數(shù)的數(shù)學(xué)運(yùn)算函數(shù),math模塊不支持復(fù)數(shù)運(yùn)算,若需計(jì)算復(fù)數(shù),可使用cmath模塊(本文不贅述)。

使用dir函數(shù),查看math庫中包含的所有內(nèi)容:

1) math.pi????# 圓周率π

2) math.e????#自然對(duì)數(shù)底數(shù)

3) math.inf? ? #正無窮大∞,-math.inf? ? #負(fù)無窮大-∞

4) math.nan? ? #非浮點(diǎn)數(shù)標(biāo)記,NaN(not a number)

1) math.fabs(x)? ? #表示X值的絕對(duì)值

2) math.fmod(x,y)? ? #表示x/y的余數(shù),結(jié)果為浮點(diǎn)數(shù)

3) math.fsum([x,y,z])? ? #對(duì)括號(hào)內(nèi)每個(gè)元素求和,其值為浮點(diǎn)數(shù)

4) math.ceil(x)? ? #向上取整,返回不小于x的最小整數(shù)

5)math.floor(x)? ? #向下取整,返回不大于x的最大整數(shù)

6) math.factorial(x)? ? #表示X的階乘,其中X值必須為整型,否則報(bào)錯(cuò)

7) math.gcd(a,b)? ? #表示a,b的最大公約數(shù)

8)? math.frexp(x)? ? ? #x = i *2^j,返回(i,j)

9) math.ldexp(x,i)? ? #返回x*2^i的運(yùn)算值,為math.frexp(x)函數(shù)的反運(yùn)算

10) math.modf(x)? ? #表示x的小數(shù)和整數(shù)部分

11) math.trunc(x)? ? #表示x值的整數(shù)部分

12) math.copysign(x,y)? ? #表示用數(shù)值y的正負(fù)號(hào),替換x值的正負(fù)號(hào)

13) math.isclose(a,b,rel_tol =x,abs_tol = y)? ? #表示a,b的相似性,真值返回True,否則False;rel_tol是相對(duì)公差:表示a,b之間允許的最大差值,abs_tol是最小絕對(duì)公差,對(duì)比較接近于0有用,abs_tol必須至少為0。

14) math.isfinite(x)? ? #表示當(dāng)x不為無窮大時(shí),返回True,否則返回False

15) math.isinf(x)? ? #當(dāng)x為±∞時(shí),返回True,否則返回False

16) math.isnan(x)? ? #當(dāng)x是NaN,返回True,否則返回False

1) math.pow(x,y)? ? #表示x的y次冪

2) math.exp(x)? ? #表示e的x次冪

3) math.expm1(x)? ? #表示e的x次冪減1

4) math.sqrt(x)? ? #表示x的平方根

5) math.log(x,base)? ? #表示x的對(duì)數(shù)值,僅輸入x值時(shí),表示ln(x)函數(shù)

6) math.log1p(x)? ? #表示1+x的自然對(duì)數(shù)值

7) math.log2(x)? ? #表示以2為底的x對(duì)數(shù)值

8) math.log10(x)? ? #表示以10為底的x的對(duì)數(shù)值

1) math.degrees(x)? ? #表示弧度值轉(zhuǎn)角度值

2) math.radians(x)? ? #表示角度值轉(zhuǎn)弧度值

3) math.hypot(x,y)? ? #表示(x,y)坐標(biāo)到原點(diǎn)(0,0)的距離

4) math.sin(x)? ? #表示x的正弦函數(shù)值

5) math.cos(x)? ? #表示x的余弦函數(shù)值

6) math.tan(x)? ? #表示x的正切函數(shù)值

7)math.asin(x)? ? #表示x的反正弦函數(shù)值

8)?math.acos(x)? ? #表示x的反余弦函數(shù)值

9)?math.atan(x)? ? #表示x的反正切函數(shù)值

10) math.atan2(y,x)? ? #表示y/x的反正切函數(shù)值

11) math.sinh(x)? ? #表示x的雙曲正弦函數(shù)值

12) math.cosh(x)? ? #表示x的雙曲余弦函數(shù)值

13) math.tanh(x)? ? #表示x的雙曲正切函數(shù)值

14) math.asinh(x)? ? #表示x的反雙曲正弦函數(shù)值

15) math.acosh(x)? ? #表示x的反雙曲余弦函數(shù)值

16) math.atanh(x)? ? #表示x的反雙曲正切函數(shù)值

1)math.erf(x)? ? #高斯誤差函數(shù)

2) math.erfc(x)? ? #余補(bǔ)高斯誤差函數(shù)

3) math.gamma(x)? ? #伽馬函數(shù)(歐拉第二積分函數(shù))

4) math.lgamma(x)? ? #伽馬函數(shù)的自然對(duì)數(shù)

python計(jì)算余弦函數(shù)不是

這些函數(shù)的單位是弧度,不是角度。

30度角度換算成弧度是(pi/6);

用numpy.sin(numpy.PI/6)或numpy.sin(3.1415926/6)

余弦也是cos..

如果僅僅是入門級(jí)或輕量級(jí)的計(jì)算用Math.cos就可以了,numpy顯得很重型

python畫正余弦函數(shù)圖像?

用python怎樣畫出如題所示的正余弦函數(shù)圖像? 如此編寫代碼,使其中兩個(gè)軸、圖例、刻度,大小,LaTex公式等要素與原圖一致,需要用到的代碼如下,沒有縮進(jìn):

#-*-codeing:utf-8;-*-

from matplotlib import pyplot as plt

import numpy as np

a=np.linspace(0,360,980)

b=np.sin(a/180*np.pi)

c=np.cos(a/180*np.pi)

fig = plt.figure()

ax = fig.add_subplot(111)

ax.set_xlim([0, 360])

ax.plot(a,b,label=r"$y=\sin(\theta)$")

ax.plot(a,c,label=r"$y=\cos(\theta)$")

ax.grid(True)

ax.set_ylabel(r"$y$")

ax.set_xlabel(r"$\theta$")

plt.xticks(np.arange(0,360+1,45))

plt.title("Sine Cosine Waves")

plt.legend()

plt.savefig("SinCosWaveDegFont.jpg")

plt.show()

代碼運(yùn)行show的窗口圖

代碼的截圖

代碼輸出的文件的圖

Python中計(jì)算三角函數(shù)之cos()方法的使用簡介

這篇文章主要介紹了Python中計(jì)算三角函數(shù)之cos()方法的使用簡介,是Python入門的基礎(chǔ)知識(shí),需要的朋友可以參考下

cos()方法返回x弧度的余弦值。

語法

以下是cos()方法的語法:

cos(x)

注意:此函數(shù)是無法直接訪問的,所以我們需要導(dǎo)入math模塊,然后需要用math的靜態(tài)對(duì)象來調(diào)用這個(gè)函數(shù)。

參數(shù)

x

--

這必須是一個(gè)數(shù)值

返回值

此方法返回-1

1之間的數(shù)值,它表示角度的余弦值

例子

下面的例子展示cos()方法的使用

?

1

2

3

4

5

6

7

8#!/usr/bin/python

import

math

print

"cos(3)

:

",

math.cos(3)

print

"cos(-3)

:

",

math.cos(-3)

print

"cos(0)

:

",

math.cos(0)

print

"cos(math.pi)

:

",

math.cos(math.pi)

print

"cos(2*math.pi)

:

",

math.cos(2*math.pi)

當(dāng)我們運(yùn)行上面的程序,它會(huì)產(chǎn)生以下結(jié)果:

?

1

2

3

4

5cos(3)

:

-0.9899924966

cos(-3)

:

-0.9899924966

cos(0)

:

1.0

cos(math.pi)

:

-1.0

cos(2*math.pi)

:

1.0


網(wǎng)頁題目:python的余弦函數(shù),python怎么計(jì)算余弦值
本文路徑:http://weahome.cn/article/dsedcch.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部