Ruby CMath tan()方法及示例

Ruby CMath tan()方法及示例

tan()方法 是数学类,用于返回给定值的正切值。

语法: Math.tan(z)

参数: 这里,z是需要计算正切的值。

返回: 该方法返回z的正切值。

例子 1 :

# Ruby code for tan() method
require 'cmath'
  
# Initializing value   
a = 0.3584
b = 2
  
# Printing result    
puts "tan value of a : #{CMath.tan(a)}\n\n"   
puts "tan value of b : #{CMath.tan(b)}\n\n"

输出

tan value of a : 0.374577262964287

tan value of b : -2.185039863261519

例2 :

# Ruby code for tan() method
require 'cmath'
  
# Initializing value   
a = 0
b = -0.247
  
# Printing result    
puts "tan value of a : #{CMath.tan(a)}\n\n"   
puts "tan value of b : #{CMath.tan(b)}\n\n"

输出

tan value of a : 0.0

tan value of b : -0.2521487591957248

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程