Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

पायथन में लैगुएरे बहुपद और x, y, z नमूना बिंदुओं का एक छद्म वेंडरमोंडे मैट्रिक्स उत्पन्न करें

x, y, z नमूना बिंदुओं के साथ लैगुएरे बहुपद का छद्म वेंडरमोंड मैट्रिक्स उत्पन्न करने के लिए, Python Numpy में laguerre.lagvander3d() का उपयोग करें। पैरामीटर, x, y, z अंक की एक सरणी देता है। dtype को फ्लोट64 या कॉम्प्लेक्स128 में परिवर्तित किया जाता है, जो इस बात पर निर्भर करता है कि कोई भी तत्व जटिल है या नहीं। यदि x अदिश है तो इसे 1-D सरणी में बदल दिया जाता है। पैरामीटर, डिग्री [x_deg, y_deg, z_deg] की अधिकतम डिग्री की सूची है।

कदम

सबसे पहले, आवश्यक पुस्तकालय आयात करें -

import numpy as np
from numpy.polynomial import laguerre as L

numpy.array() विधि का उपयोग करके बिंदु निर्देशांकों की सरणियाँ बनाएँ, सभी समान आकार की -

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

सरणियों को प्रदर्शित करें -

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

डेटाटाइप प्रदर्शित करें -

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

दोनों सरणियों के आयामों की जाँच करें -

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

दोनों सरणियों के आकार की जाँच करें -

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

x, y, z नमूना बिंदुओं के साथ लैगुएरे बहुपद का एक छद्म वेंडरमोंड मैट्रिक्स उत्पन्न करने के लिए, पायथन में laguerre.lagvander3d() का उपयोग करें -

x_deg, y_deg, z_deg = 2, 3, 4
print("\nResult...\n",L.lagvander3d(x,y,z, [x_deg, y_deg, z_deg]))

उदाहरण

import numpy as np
from numpy.polynomial import laguerre as L

# 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])
z = np.array([5, 6])

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

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

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

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

# To generate a pseudo Vandermonde matrix of the Laguerre polynomial with x, y, z sample points, use the laguerre.lagvander3d() in Python Numpy

x_deg, y_deg, z_deg = 2, 3, 4
print("\nResult...\n",L.lagvander3d(x,y,z, [x_deg, y_deg, z_deg]))

आउटपुट

Array1...
   [1 2]

Array2...
   [3 4]

Array3...
   [5 6]

Array1 datatype...
int64

Array2 datatype...
int64

Array3 datatype...
int64

Dimensions of Array1...
1

Dimensions of Array2...
1

Dimensions of Array3...
1

Shape of Array1...
(2,)

Shape of Array2...
(2,)

Shape of Array3...
(2,)

Result...
   [[ 1.       -4.          3.5          2.66666667 -1.29166667
     -2.        8.          -7.         -5.33333333  2.58333333
     -0.5       2.          -1.75       -1.33333333  0.64583333
      1.       -4.          3.5          2.66666667 -1.29166667
      0.       -0.           0.          0.         -0.
     -0.        0.          -0.         -0.          0.
     -0.        0.          -0.         -0.          0.
      0. -      0.           0.          0.         -0.
    -0.5        2.          -1.75       -1.33333333  0.64583333
    1.         -4.           3.5         2.66666667 -1.29166667
    0.25       -1.           0.875       0.66666667 -0.32291667
   -0.5         2.          -1.75       -1.33333333  0.64583333]
  [ 1.         -5.           7.          1.         -5.
   -3.         15.          -21.        -3.         15.
    1.         -5.           7.          1.         -5.
    2.33333333 -11.66666667 16.33333333  2.33333333 -11.66666667
   -1.          5.         -7.          -1.          5.
    3.         -15.         21.          3.         -15.
   -1.          5.         -7.          -1.           5.
   -2.33333333 11.66666667 -16.33333333 -2.33333333  11.66666667
   -1.          5.         -7.          -1.           5.
    3.        -15.         21.           3.          -15.
   -1.          5.         -7.          -1.           5.
   -2.33333333 11.66666667 -16.33333333 -2.33333333  11.66666667]]

  1. पायथन में चेबीशेव बहुपद और x, y, z फ्लोटिंग पॉइंट ऑफ़ पॉइंट्स का छद्म वेंडरमोंडे मैट्रिक्स उत्पन्न करें

    Chebyshev बहुपद और x, y, z नमूना बिंदुओं का छद्म वेंडरमोंडे मैट्रिक्स उत्पन्न करने के लिए, Python Numpy में chebyshev.chebvander() का उपयोग करें। विधि डिग्री डिग्री और नमूना बिंदुओं (x, y, z) के छद्म-वैंडरमोंडेमेट्रिक्स लौटाती है। पैरामीटर, x, y, z बिंदु निर्देशांक के सरणियाँ हैं, सभी एक ही आकार क

  1. पायथन में चेबीशेव बहुपद का छद्म वेंडरमोंड मैट्रिक्स उत्पन्न करें

    चेबीशेव बहुपद का छद्म वेंडरमोंड मैट्रिक्स उत्पन्न करने के लिए, पायथन नम्पी में thechebyshev.chebvander() का उपयोग करें। यह विधि डिग्री डिग्री और नमूना बिंदुओं (x, y) के छद्म-वैंडरमोंड मैट्रिक्स को लौटाती है। पैरामीटर x, y बिंदु निर्देशांक के सरणियाँ हैं, सभी समान आकार के हैं। कोई भी तत्व जटिल है या

  1. अजगर में हरमाइट बहुपद और x, y, z जटिल बिंदुओं का एक छद्म वेंडरमोंडे मैट्रिक्स उत्पन्न करें

    Hermite बहुपद और x, y, z नमूना बिंदुओं का छद्म वेंडरमोंड मैट्रिक्स उत्पन्न करने के लिए, Python Numpy में hermite.hermvander3d() का उपयोग करें। विधि छद्म-वेंडरमोंडेमेट्रिक्स लौटाती है। पैरामीटर, x, y, z बिंदु निर्देशांक के सरणियाँ हैं, सभी एक ही आकार के हैं। तत्वों में से कोई भी जटिल है या नहीं, इस प