ホーム ] PC技術/システム技術 ] VB.NETプログラミング ] なるほどナレッジ ] インフォメーション ]

上へ
公称精度/定数
関係演算
加減算
乗除算
数学関数-1
数学関数-2
数学関数-3
数学関数-4
予測関数

MegaPrecisionクラス

数学関数-4

最終更新日:2006/12/13  新規

●概要

 双曲線関数。

●双曲線関数

○双曲線正弦

 最適化が未達なので正規版無し。

SinhDirect(ByRef A As MegaLong) As MegaLong      (試験向き)
SinhBasic(ByRef A As MegaLong) As MegaLong      (試験向き)
SinhEx(ByRef A As MegaLong, ByVal m As Integer) As MegaLong      (試験向き)

 SinhDirect   :定義式で求めたもの
 SinhBasic    :級数で求めたもの
 SinhEx         :級数 + 5倍角による漸化式によるもの。m は漸化段数

○双曲線余弦

 最適化が未達なので正規版無し。

CoshDirect(ByRef A As MegaLong) As MegaLong      (試験向き)
CoshBasic(ByRef A As MegaLong) As MegaLong      (試験向き)
CoshEx(ByRef A As MegaLong, ByVal m As Integer) As MegaLong      (試験向き)

 CoshDirect   :定義式で求めたもの
 CoshBasic    :級数で求めたもの
 CoshEx         :級数 + 5倍角による漸化式によるもの。m は漸化段数

○双曲線正接

Tanh(ByRef A As MegaLong) As MegaLong

 定義式で求めたもの。

●逆双曲線関数

○逆双曲線正弦

ASinh(ByRef A As MegaLong) As MegaLong

 定義式で求めたもの。

○逆双曲線余弦

ACosh(ByRef A As MegaLong) As MegaLong

 定義式で求めたもの。

○逆双曲線正接

ATanh(ByRef A As MegaLong) As MegaLong

 定義式で求めたもの。