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

Pythonで特定の次数の疑似ファンデルモンド行列を生成します


与えられた次数の疑似ファンデルモンド行列を生成するには、Python Numpyでpolynomial.polyvander2()を使用します。このメソッドは、度度とサンプルポイント(x、y)の疑似ファンデルモンド行列を返します。パラメータxとyは、すべて同じ形状の点座標の配列です。 dtypeは、要素のいずれかが複合であるかどうかに応じて、float64またはcomplex128のいずれかに変換されます。スカラーは1-D配列に変換されます。パラメータdegは、[x_deg、y_deg]の形式の最大度のリストです。

ステップ

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

import numpy as np
from numpy.polynomial.polynomial import polyvander2d

numpy.array()メソッドを使用して、すべて同じ形状の点座標の配列を作成します-

x = np.array([1, 2])
y = np.array([3, 4])

配列を表示する-

print("Array1...\n",x)
print("\nArray2...\n",y)

データ型を表示する-

print("\nArray1 datatype...\n",x.dtype)
print("\nArray2 datatype...\n",y.dtype)

両方のアレイの寸法を確認してください-

print("\nDimensions of Array1...\n",x.ndim)
print("\nDimensions of Array2...\n",y.ndim)

両方のアレイの形状を確認してください-

print("\nShape of Array1...\n",x.shape)
print("\nShape of Array2...\n",y.shape)

与えられた次数の疑似ファンデルモンド行列を生成するには、Python Numpyでpolynomial.polyvander2()を使用します-

x_deg, y_deg = 2, 3
print("\nResult...\n",polyvander2d(x,y, [x_deg, y_deg]))

import numpy as np
from numpy.polynomial.polynomial import polyvander2d

# Create arrays of point coordinates, all of the same shape using the numpy.array() method
x = np.array([1, 2])
y = np.array([3, 4])

# Display the arrays
print("Array1...\n",x)
print("\nArray2...\n",y)

# Display the datatype
print("\nArray1 datatype...\n",x.dtype)
print("\nArray2 datatype...\n",y.dtype)

# Check the Dimensions of both the arrays
print("\nDimensions of Array1...\n",x.ndim)
print("\nDimensions of Array2...\n",y.ndim)

# Check the Shape of both the arrays
print("\nShape of Array1...\n",x.shape)
print("\nShape of Array2...\n",y.shape)

# To generate a Pseudo-Vandermonde matrix of given degree, use the polynomial.polyvander2() in Python Numpy
# The method returns the pseudo-Vandermonde matrix of degrees deg and sample points (x, y).
x_deg, y_deg = 2, 3
print("\nResult...\n",polyvander2d(x,y, [x_deg, y_deg]))

出力

Array1...
   [1 2]

Array2...
   [3 4]

Array1 datatype...
int64

Array2 datatype...
int64

Dimensions of Array1...
1

Dimensions of Array2...
1

Shape of Array1...
(2,)

Shape of Array2...
(2,)

Result...
   [[ 1. 3. 9. 27. 1. 3. 9. 27. 1. 3. 9. 27.]
   [ 1. 4. 16. 64. 2. 8. 32. 128. 4. 16. 64. 256.]]

  1. 行列をZ形式で印刷するPythonプログラム

    この記事では、特定の問題ステートメントを解決するための解決策とアプローチについて学習します。 問題の説明 −次数n * nの正方行列が与えられた場合、行列の要素をZ形式で表示する必要があります。 Zフォームは、次の手順でマトリックスをトラバースしています- 最初の行をトラバースします 次に、2番目の主対角線を横断します 最後に、最後の行をトラバースします。 ここでは、code.demostrateのフローを示すために暗黙的に取得された入力マトリックスを取得します。 例 arr = [[1, 2, 6, 9],    [1, 2, 3, 1],   &nb

  2. Pythonでの行列操作

    Pythonでは、さまざまな行列の操作と操作を解決できます。 Numpy Moduleは、行列演算にさまざまな方法を提供します。 add() −2つの行列の要素を追加します。 減算() −2つの行列の要素を減算します。 divide() −2つの行列の要素を分割します。 multiply() −2つの行列の要素を乗算します。 dot() −行列の乗算を実行し、要素ごとの乗算は実行しません。 sqrt() −行列の各要素の平方根。 sum(x、axis) −マトリックス内のすべての要素に追加します。 2番目の引数はオプションです。これは、軸が0の場合は列の合計を計算し、