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