日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

tf.acos_带有Python示例的math.acos()方法

發布時間:2023/12/1 python 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 tf.acos_带有Python示例的math.acos()方法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

tf.acos

Python math.acos()方法 (Python math.acos() method)

math.acos() method is a library method of math module, it is used to get the arc cosine, it accepts a number between -1 to 1 and returns the arc cosine value (in radians) of the given number.

math.acos()方法是數學模塊的庫方法,用于獲取反余弦,它接受-1到1之間的數字,并返回給定數字的反余弦值(以弧度為單位)。

Note: math.acos() method accepts the only number between the range of -1 to 1, if we provide number out of the range, it returns a ValueError - "ValueError: math domain error", and if we provide anything else except the number, it returns error TypeError - "TypeError: a float is required".

注意: math.acos()方法僅接受介于-1到1之間的數字,如果我們提供的數字超出該范圍,則它將返回ValueError- “ ValueError:math domain error” ,并且如果我們提供除此以外的任何內容數字,它返回錯誤TypeError- “ TypeError:需要浮點數” 。

Syntax of math.acos() method:

math.acos()方法的語法:

math.acos(x)

Parameter(s): x – is the number whose arc cosine to be calculated.

參數: x –是要計算其反余弦的數字。

Return value: float – it returns a float value that is the arc cosine value of the number x.

返回值: float –返回一個浮點值,該浮點值是數字x的反余弦值。

Example:

例:

Input:a = 0.278# function callprint(math.acos(a))Output:0.2853901924877167

Python代碼演示math.acos()方法的示例 (Python code to demonstrate example of math.acos() method)

# python code to demonstrate example of # math.acos() method # importing math module import math# number a = -1 print("acos(",a,") is = ", math.acos(a))a = 0 print("acos(",a,") is = ", math.acos(a))a = 0.278 print("acos(",a,") is = ", math.acos(a))a = 1 print("acos(",a,") is = ", math.acos(a))

Output

輸出量

acos( -1 ) is = 3.141592653589793 acos( 0 ) is = 1.5707963267948966 acos( 0.278 ) is = 1.2890849198520296 acos( 1 ) is = 0.0

ValueError example

ValueError示例

# python code to demonstrate example of # math.acos() method with an exception# importing math module import math# number a = 2 print("acos(",a,") is = ", math.acos(a))

Output

輸出量

Traceback (most recent call last):File "/home/main.py", line 9, in <module>print("acos(",a,") is = ", math.acos(a)) ValueError: math domain error

TypeError example

TypeError示例

# python code to demonstrate example of # math.acos() method with an exception# importing math module import math# number a = "2" print("acos(",a,") is = ", math.acos(a))

Output

輸出量

Traceback (most recent call last):File "/home/main.py", line 9, in <module>print("acos(",a,") is = ", math.acos(a)) TypeError: a float is required

翻譯自: https://www.includehelp.com/python/math-acos-method-with-example.aspx

tf.acos

總結

以上是生活随笔為你收集整理的tf.acos_带有Python示例的math.acos()方法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。