Python
 Computer >> コンピューター >  >> プログラミング >> Python

Pythonで複素数の引数の実数部を返す


複素数の引数の実数部を返すには、Pythonでnumpy.real()メソッドを使用します。このメソッドは、複素数の引数の実数成分を返します。 valが実数の場合、valのタイプが出力に使用されます。 valに複雑な要素がある場合、返されるタイプはfloatです。最初のパラメーターvalは入力配列です

ステップ

まず、必要なライブラリをインポートします-

import numpy as np

array()メソッドを使用して配列を作成します-

arr = np.array([56.+0.j , 27.+0.j , 68.+0.j , 23.+0.j])

配列を表示する-

print("Our Array...\n",arr)

寸法を確認してください-

print("\nDimensions of our Array...\n",arr.ndim)

データ型を取得-

print("\nDatatype of our Array object...\n",arr.dtype)

形をとる-

print("\nShape of our Array...\n",arr.shape)

複素数の引数の実数部を返すには、Pythonでnumpy.real()メソッドを使用します。このメソッドは、複素数の引数の実数成分を返します。 valが実数の場合、valのタイプが出力に使用されます。 valに複雑な要素がある場合、返されるタイプはfloatです。最初のパラメーターvalは、入力配列-

print("\nResult (Real part)...\n",np.real(arr))

import numpy as np

# Create an array using the array() method
arr = np.array([56.+0.j , 27.+0.j , 68.+0.j , 23.+0.j])

# Display the array
print("Our Array...\n",arr)

# Check the Dimensions
print("\nDimensions of our Array...\n",arr.ndim)

# Get the Datatype
print("\nDatatype of our Array object...\n",arr.dtype)

# Get the Shape
print("\nShape of our Array...\n",arr.shape)

# To return the real part of the complex argument, use the numpy.real() method in Python
print("\nResult (Real part)...\n",np.real(arr))

出力

Our Array...
[56.+0.j 27.+0.j 68.+0.j 23.+0.j]

Dimensions of our Array...
1

Datatype of our Array object...
complex128

Shape of our Array...
(4,)

Result (Real part)...
[56. 27. 68. 23.]

  1. Pythonの軸0上のN次元配列の勾配を返します

    勾配は、内部ポイントの2次の正確な中心の差と、境界での1次または2次の正確な片側(前方または後方)の差を使用して計算されます。したがって、返される勾配は、入力配列と同じ形状になります。最初のパラメーターfは、スカラー関数のサンプルを含むN次元配列です。 2番目のパラメーターは、varargs、つまりf値間の間隔です。すべての寸法のデフォルトの単一間隔。 3番目のパラメータはedge_order{1、2}です。つまり、勾配は境界でのN次の正確な差を使用して計算されます。デフォルト:1。4番目のパラメーターはグラデーションで、指定された1つまたは複数の軸に沿ってのみ計算されます。デフォルト(ax

  2. Python-Pandasインデックスのデータを表す配列を返します

    Pandas Indexのデータを表す配列を返すには、 index.valuesを使用します パンダのプロパティ。 まず、必要なライブラリをインポートします- import pandas as pd インデックスの作成- index = pd.Index(['Car','Bike','Truck','Ship','Airplane']) インデックスを表示- print("Pandas Index...\n",index) インデックス内のデータを表す配列を返します- print(&q