IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Java版的NumPy - NDArray 数学函数 -> 正文阅读

[Java知识库]Java版的NumPy - NDArray 数学函数

NDArray 数学函数

NDArray包含大量的各种数学运算的函数,包括三角函数,算术运算的函数,复数处理函数等。

1.三角函数

NDArray 提供了标准的三角函数:sin()、cos()、tan()。

  • Python
import numpy as np
 
a = np.array([0,30,45,60,90])
print ('不同角度的正弦值:')
# 通过乘 pi/180 转化为弧度  
print (np.sin(a*np.pi/180))
print ('\n')
print ('数组中角度的余弦值:')
print (np.cos(a*np.pi/180))
print ('\n')
print ('数组中角度的正切值:')
print (np.tan(a*np.pi/180))

# 输出结果如下:
不同角度的正弦值:
[0.         0.5        0.70710678 0.8660254  1.        ]

数组中角度的余弦值:
[1.00000000e+00 8.66025404e-01 7.07106781e-01 5.00000000e-01
 6.12323400e-17]

数组中角度的正切值:
[0.00000000e+00 5.77350269e-01 1.00000000e+00 1.73205081e+00
 1.63312394e+16]
  • Java
NDArray a = manager.create(new int[]{0, 30, 45, 60, 90});
System.out.println("不同角度的正弦值:");
// 通过乘 pi/180 转化为弧度
NDArray b = a.mul(Math.PI / 180).sin();
System.out.println(b.toDebugString(100, 10, 100, 100));
System.out.println("数组中角度的余弦值:");
 b = a.mul(Math.PI / 180).cos();
System.out.println(b.toDebugString(100, 10, 100, 100));
System.out.println("数组中角度的正切值:");
 b = a.mul(Math.PI / 180).tan();
System.out.println(b.toDebugString(100, 10, 100, 100));


# 输出结果如下:
不同角度的正弦值:
ND: (5) cpu() float64
[0.    , 0.5   , 0.7071, 0.866 , 1.    ]

数组中角度的余弦值:
ND: (5) cpu() float64
[ 1.00000000e+00,  8.66025404e-01,  7.07106781e-01,  5.00000000e-01,  6.12323400e-17]

数组中角度的正切值:
ND: (5) cpu() float64
[ 0.00000000e+00,  5.77350269e-01,  1.00000000e+00,  1.73205081e+00,  1.63312394e+16]

2. 反三角函数

arcsin,arccos,和 arctan 函数返回给定角度的 sin,cos 和 tan 的反三角函数。
这些函数的结果可以通过toDegrees() 函数将弧度转换为角度。

  • Python
import numpy as np
 
a = np.array([0,30,45,60,90])  
print ('含有正弦值的数组:')
sin = np.sin(a*np.pi/180)  
print (sin)
print ('\n')
print ('计算角度的反正弦,返回值以弧度为单位:')
inv = np.arcsin(sin)  
print (inv)
print ('\n')
print ('通过转化为角度制来检查结果:')
print (np.degrees(inv))
print ('\n')
print ('arccos 和 arctan 函数行为类似:')
cos = np.cos(a*np.pi/180)  
print (cos)
print ('\n')
print ('反余弦:')
inv = np.arccos(cos)  
print (inv)
print ('\n')
print ('角度制单位:')
print (np.degrees(inv))
print ('\n')
print ('tan 函数:')
tan = np.tan(a*np.pi/180)  
print (tan)
print ('\n')
print ('反正切:')
inv = np.arctan(tan)  
print (inv)
print ('\n')
print ('角度制单位:')
print (np.degrees(inv))

# 输出结果如下:
含有正弦值的数组:
[0.         0.5        0.70710678 0.8660254  1.        ]

计算角度的反正弦,返回值以弧度为单位:
[0.         0.52359878 0.78539816 1.04719755 1.57079633]

通过转化为角度制来检查结果:
[ 0. 30. 45. 60. 90.]

arccos 和 arctan 函数行为类似:
[1.00000000e+00 8.66025404e-01 7.07106781e-01 5.00000000e-01
 6.12323400e-17]

反余弦:
[0.         0.52359878 0.78539816 1.04719755 1.57079633]

角度制单位:
[ 0. 30. 45. 60. 90.]

tan 函数:
[0.00000000e+00 5.77350269e-01 1.00000000e+00 1.73205081e+00
 1.63312394e+16]

反正切:
[0.         0.52359878 0.78539816 1.04719755 1.57079633]

角度制单位:
[ 0. 30. 45. 60. 90.]
  • Java
a = manager.create(new int[]{0, 30, 45, 60, 90});
System.out.println("含有正弦值的数组:");
NDArray sin = a.mul(Math.PI / 180).sin();
System.out.println(sin.toDebugString(100, 10, 100, 100));
System.out.println("计算角度的反正弦,返回值以弧度为单位:");
NDArray inv = sin.asin();
System.out.println(inv.toDebugString(100, 10, 100, 100));
System.out.println("通过转化为角度制来检查结果:");
b = inv.toDegrees();
System.out.println(b.toDebugString(100, 10, 100, 100));
System.out.println("arccos 和 arctan 函数行为类似:");
NDArray cos = a.mul(Math.PI / 180).cos();
System.out.println(cos.toDebugString(100, 10, 100, 100));
System.out.println("反余弦:");
inv = cos.acos();
System.out.println(inv.toDebugString(100, 10, 100, 100));
System.out.println("角度制单位:");
b = inv.toDegrees();
System.out.println(b.toDebugString(100, 10, 100, 100));
System.out.println("tan 函数:");
NDArray tan = a.mul(Math.PI / 180).tan();
System.out.println(tan.toDebugString(100, 10, 100, 100));
System.out.println("反正切:");
inv = tan.atan();
System.out.println(inv.toDebugString(100, 10, 100, 100));
System.out.println("角度制单位:");
b = inv.toDegrees();
System.out.println(b.toDebugString(100, 10, 100, 100));


# 输出结果如下:
含有正弦值的数组:
ND: (5) cpu() float64
[0.    , 0.5   , 0.7071, 0.866 , 1.    ]

计算角度的反正弦,返回值以弧度为单位:
ND: (5) cpu() float64
[0.    , 0.5236, 0.7854, 1.0472, 1.5708]

通过转化为角度制来检查结果:
ND: (5) cpu() float64
[ 0., 30., 45., 60., 90.]

arccos 和 arctan 函数行为类似:
ND: (5) cpu() float64
[ 1.00000000e+00,  8.66025404e-01,  7.07106781e-01,  5.00000000e-01,  6.12323400e-17]

反余弦:
ND: (5) cpu() float64
[0.    , 0.5236, 0.7854, 1.0472, 1.5708]

角度制单位:
ND: (5) cpu() float64
[ 0., 30., 45., 60., 90.]

tan 函数:
ND: (5) cpu() float64
[ 0.00000000e+00,  5.77350269e-01,  1.00000000e+00,  1.73205081e+00,  1.63312394e+16]

反正切:
ND: (5) cpu() float64
[0.    , 0.5236, 0.7854, 1.0472, 1.5708]

角度制单位:
ND: (5) cpu() float64
[ 0., 30., 45., 60., 90.]

3. 舍入函数

3.1 四舍五入

numpy.around() 函数返回指定数字的四舍五入值。

  • Python
import numpy as np
 
a = np.array([1.0,5.55,  123,  0.567,  25.532])  
print  ('原数组:')
print (a)
print ('\n')
print ('舍入后:')
print (np.around(a))

# 输出结果如下:
原数组:
[  1.      5.55  123.      0.567  25.532]

舍入后:
[  1.   6. 123.   1.  26.]
  • Java
a = manager.create(new double[]{1.0, 5.55, 123, 0.567, 25.532});
System.out.println("原数组:");
System.out.println(a.toDebugString(100, 10, 100, 100));
System.out.println("舍入后:");
b = a.round();
System.out.println(b.toDebugString(100, 10, 100, 100));

# 输出结果如下:
原数组:
ND: (5) cpu() float64
[  1.   ,   5.55 , 123.   ,   0.567,  25.532]

舍入后:
ND: (5) cpu() float64
[  1.,   6., 123.,   1.,  26.]

3.2 向下取整

numpy.floor() 返回小于或者等于指定表达式的最大整数,即向下取整。

  • Python
import numpy as np
 
a = np.array([-1.7,  1.5,  -0.2,  0.6,  10])
print ('提供的数组:')
print (a)
print ('\n')
print ('修改后的数组:')
print (np.floor(a))

# 输出结果如下:
提供的数组:
[-1.7  1.5 -0.2  0.6 10. ]

修改后的数组:
[-2.  1. -1.  0. 10.]
  • Java
a = manager.create(new double[]{-1.7, 1.5, -0.2, 0.6, 10});
System.out.println("提供的数组:");
System.out.println(a.toDebugString(100, 10, 100, 100));
System.out.println("修改后的数组:");
b = a.floor();
System.out.println(b.toDebugString(100, 10, 100, 100));

# 输出结果如下:
提供的数组:
ND: (5) cpu() float64
[-1.7,  1.5, -0.2,  0.6, 10. ]

修改后的数组:
ND: (5) cpu() float64
[-2.,  1., -1.,  0., 10.]

3.3 向上取整

numpy.ceil() 返回大于或者等于指定表达式的最小整数,即向上取整。

  • Python
import numpy as np
 
a = np.array([-1.7,  1.5,  -0.2,  0.6,  10])  
print  ('提供的数组:')
print (a)
print ('\n')
print ('修改后的数组:')
print (np.ceil(a))

# 输出结果如下:
提供的数组:
[-1.7  1.5 -0.2  0.6 10. ]

修改后的数组:
[-1.  2. -0.  1. 10.]
  • Java
a = manager.create(new double[]{-1.7, 1.5, -0.2, 0.6, 10});
System.out.println("提供的数组:");
System.out.println(a.toDebugString(100, 10, 100, 100));
System.out.println("修改后的数组:");
b = a.ceil();
System.out.println(b.toDebugString(100, 10, 100, 100));

# 输出结果如下:
提供的数组:
ND: (5) cpu() float64
[-1.7,  1.5, -0.2,  0.6, 10. ]

修改后的数组:
ND: (5) cpu() float64
[-1.,  2., -0.,  1., 10.]

代码下载地址:

Github链接

Gitee链接

点击返回目录
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-03-21 20:35:37  更:2022-03-21 20:39:43 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 8:37:05-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码