asin()方法是CMath類,用於返回給定值的反正弦值。
用法: Math.asin(z)
參數:在此,z是要計算其反正弦的值。
返回:此方法返回z的反正弦值。
範例1:
# Ruby code for asin() method
require 'cmath'
# Initialize value
a = 0.3584
b = 2
# Printing result
puts "asin value of a:#{CMath.asin(a)}\n\n"
puts "asin value of b:#{CMath.asin(b)}\n\n"
輸出:
asin value of a:0.3665534738291246 asin value of b:1.5707963267948966-1.3169578969248166i
範例2:
# Ruby code for asin() method
require 'cmath'
# Initialize value
a = 0
b = -0.247
# Printing result
puts "asin value of a:#{CMath.asin(a)}\n\n"
puts "asin value of b:#{CMath.asin(b)}\n\n"
輸出:
asin value of a:0.0 asin value of b:-0.24958310188075922
相關用法
- Ruby CMath sin()用法及代碼示例
- Ruby CMath cos()用法及代碼示例
- Ruby CMath tan()用法及代碼示例
- Ruby CMath atan()用法及代碼示例
- Ruby CMath acos()用法及代碼示例
- Ruby CMath sinh()用法及代碼示例
- Ruby CMath cbrt()用法及代碼示例
- Ruby CMath sqrt()用法及代碼示例
- Ruby CMath cosh()用法及代碼示例
- Ruby CMath tanh()用法及代碼示例
- Ruby Math asin()用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | CMath asin() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。