Python Numpy matrix.conjugate()

Python Numpy matrix.conjugate()

Numpy matrix.conjugate()方法的帮助下,我们能够找到一个或多个维度的给定矩阵的共轭值。

语法: matrix.conjugate()

返回:返回给定矩阵的共轭。

例子#1 :
在这个例子中,我们可以看到matrix.conjugate()方法被用来对矩阵进行共轭。记住,字符串类型的矩阵在这里不起作用。

# import the important module in python
import numpy as np
           
# make an array with numpy
gfg = np.matrix('[1 + 2j, 2 + 3j]')
           
# applying matrix.conjugate() method
geeks = gfg.conjugate()
     
print(geeks)

输出:

[[ 1.-2.j  2.-3.j]]

例子#2 :

# import the important module in python
import numpy as np
           
# make an array with numpy
gfg = np.matrix('[1 + 2j, 2 + 3j, 3-2j; 1-4j, 2-3j, 7 + 8j]')
           
# applying matrix.conjugate() method
geeks = gfg.conjugate()
     
print(geeks)

输出:

[[ 1.-2.j  2.-3.j  3.+2.j]
 [ 1.+4.j  2.+3.j  7.-8.j]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程