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

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

vb點虐 tan的簡單介紹

有誰知道VB編程中運算sin、cos、tan、cot的程序怎么寫?

sin(角度值)同理cos,tan

龍灣網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、APP開發(fā)、成都響應式網(wǎng)站建設等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)于2013年開始到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設就選創(chuàng)新互聯(lián)。

Atn()是VB反正切函數(shù),VB不提供其他反三角函數(shù),不過可以用下列公式導出:

Inverse

Sine

(反正弦):

Arcsin(X)

=

Atn(X

/

Sqr(-X

*

X

+

1))

Inverse

Cosine

(反余弦):

Arccos(X)

=

Atn(-X

/

Sqr(-X

*

X

+

1))

+

2

*

Atn(1)

Inverse

Secant

(反正割):

Arcsec(X)

=

Atn(X

/

Sqr(X

*

X

-

1))

+

Sgn((X)

-

1)

*

(2

*

Atn(1))

Inverse

Cosecant

(反余割):

Arccosec(X)

=

Atn(X

/

Sqr(X

*

X

-

1))

+

(Sgn(X)

-

1)

*

(2

*

Atn(1))

以上這些公式,其實就是應用了數(shù)學中的各類三角函數(shù)和正切函數(shù)之間的關(guān)系導出的。其中需要注意的是其中的

X

不能等于正負1。(引用-_-)

x都是弧度制

在vb中。如何進行三角函數(shù)的程序代碼編寫

有幾個地方要注意:

1、VB中的三角函數(shù)的角度全部是用弧度制表示的,如果是度數(shù)的話,應先乘以180再除以π轉(zhuǎn)成弧度,再用函數(shù)計算結(jié)果。

2、VB中直接支持的三角函數(shù)有:Sin()、Cos()、Tan(),如果涉及到其它三角函數(shù),可以從下面列出的代碼中自己選擇相應的函數(shù):

Function

Sec(X)

As

Double

'正割

Sec

=

1

/

Cos(Angle)

End

Function

Function

Csc(X)

As

Double

'余割

Csc

=

1

/

Sin(Angle)

End

Function

Function

Cot(X)

As

Double

'余切

Cot

=

1

/

Tan(Angle)

End

Function

Function

ArcSin(X)

As

Double

'反正弦

ArcSin

=

Atn(X

/

Sqr(-X

*

X

+

1))

End

Function

Function

ArcCos(X)

As

Double

'反余弦

ArcCos

=

Atn(-X

/

Sqr(-X

*

X

+

1))

+

2

*

Atn(1)

End

Function

Function

ArcSec(X)

As

Double

'反正割

ArcSec

=

Atn(X

/

Sqr(X

*

X

-

1))

+

Sgn((X)

-

1)

*

(2

*

Atn(1))

End

Function

Function

ArcCsc(X)

As

Double

'反余割

ArcCsc

=

Atn(X

/

Sqr(X

*

X

-

1))

+

(Sgn(X)

-

1)

*

(2

*

Atn(1))

End

Function

Function

ArcCot(X)

As

Double

'反余切

ArcCot

=

Atn(X)

+

2

*

Atn(1)

End

Function

Function

HSin(X)

As

Double

'雙曲正弦

HSin

=

(Exp(X)

-

Exp(-X))

/

2

End

Function

Function

HCos(X)

As

Double

'雙曲余弦

HCos

=

(Exp(X)

+

Exp(-X))

/

2

End

Function

Function

HTan(X)

As

Double

'雙曲正切

HTan

=

(Exp(X)

-

Exp(-X))

/

(Exp(X)

+

Exp(-X))

End

Function

Function

HSec(X)

As

Double

'雙曲正割

HSec

=

2

/

(Exp(X)

+

Exp(-X))

End

Function

Function

HCsc(X)

As

Double

'雙曲余割

HCsc

=

2

/

(Exp(X)

-

Exp(-X))

End

Function

Function

HCot(X)

As

Double

'雙曲余切

HCot

=

(Exp(X)

+

Exp(-X))

/

(Exp(X)

-

Exp(-X))

End

Function

Function

HArcsin(X)

As

Double

'反雙曲正弦

HArcsin

=

Log(X

+

Sqr(X

*

X

+

1))

End

Function

Function

HArccos(X)

As

Double

'反雙曲余弦

HArccos

=

Log(X

+

Sqr(X

*

X

-

1))

End

Function

Function

HArctan(X)

As

Double

'反雙曲正切

HArctan

=

Log((1

+

X)

/

(1

-

X))

/

2

End

Function

Function

HArcsec(X)

As

Double

'反雙曲正割

HArcsec

=

Log((Sqr(-X

*

X

+

1)

+

1)

/

X)

End

Function

Function

HArccsc(X)

As

Double

'反雙曲余割

HArccsc

=

Log((Sgn(X)

*

Sqr(X

*

X

+

1)

+

1)

/

X)

End

Function

Function

HArccot(X)

As

Double

'反雙曲余切

HArccot

=

Log((X

+

1)

/

(X

-

1))

/

2

End

Function

VB編寫tan

你應該給出tan的數(shù)學計算公式,就會馬上有大量人員幫你回答掉這個問題的哦。

代碼如下:

Private?Sub?Command1_Click()

Dim?a?As?Double

If?Text1.Text??""?And?Text2.Text??""?Then

a?=?Atn(Val(Text1.Text)?/?Val(Text2.Text))?*?180?/?(4?*?Atn(1))

Text3.Text?=?CStr(Int(a))??"°"??CStr(Int((a?-?Int(a))?*?60))??"′"??CStr(Format(((a?-?Int(a))?*?60?-?Int((a?-?Int(a))?*?60))?*?60,?"0.00"))??"〃"

End?If

End?Sub


網(wǎng)站題目:vb點虐 tan的簡單介紹
當前路徑:http://weahome.cn/article/ddchspp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部