Python – numpy.meshgrid

Syed Abeed
Updated on 26-Mar-2026 20:25:48

1K+ Views

numpy.meshgrid() is used to create coordinate matrices from coordinate vectors. It's particularly useful for creating grids for plotting, evaluating functions over 2D domains, and mathematical computations that require coordinate pairs. Syntax numpy.meshgrid(*xi, **kwargs) Parameters Meshgrid can accept the following parameters − x1, x2, …, xn − It represents the coordinates of a grid. indexing − It is an optional parameter which defines the Cartesian 'xy' by default and matrix 'ij' index of output. sparse − It is an optional parameter. If we like ... Read More

Python – numpy.geomspace

Syed Abeed
Updated on 26-Mar-2026 20:25:24

678 Views

numpy.geomspace() returns a set of numbers spaced evenly on a log scale (a geometric progression). This function is useful for creating exponentially spaced arrays where each element is a constant multiple of the previous one. Key differences from similar functions ? Linspace − Creates linearly spaced numbers between two endpoints Logspace − Creates logarithmically spaced numbers using base and power endpoints Geomspace − Creates geometrically spaced numbers using actual start and stop values Syntax numpy.geomspace(start, stop, num=50, endpoint=True, dtype=None) Parameters The above function accepts the following parameters ? ... Read More

Differentiate a Laguerre series with multidimensional coefficients in Python

AmitDiwan
Updated on 26-Mar-2026 20:25:03

200 Views

To differentiate a Laguerre series with multidimensional coefficients, use the laguerre.lagder() method in Python. The method returns the Laguerre series coefficients differentiated m times along a specified axis. At each iteration, the result is multiplied by a scaling factor. The coefficient array c represents Laguerre polynomial terms where [1, 2, 3] represents 1*L_0 + 2*L_1 + 3*L_2. For multidimensional arrays like [[1, 2], [1, 2]], it represents 1*L_0(x)*L_0(y) + 1*L_1(x)*L_0(y) + 2*L_0(x)*L_1(y) + 2*L_1(x)*L_1(y) if axis=0 is x and axis=1 is y. Parameters The lagder() method accepts the following parameters ? c − Array of ... Read More

Differentiate a Laguerre series in Python

AmitDiwan
Updated on 26-Mar-2026 20:24:43

199 Views

To differentiate a Laguerre series, use the laguerre.lagder() method in Python. The method returns the Laguerre series coefficients differentiated m times along the specified axis. At each iteration, the result is multiplied by scl. The argument c is an array of coefficients from low to high degree along each axis. For example, [1, 2, 3] represents the series 1*L_0 + 2*L_1 + 3*L_2, while [[1, 2], [1, 2]] represents 1*L_0(x)*L_0(y) + 1*L_1(x)*L_0(y) + 2*L_0(x)*L_1(y) + 2*L_1(x)*L_1(y) if axis=0 is x and axis=1 is y. Syntax laguerre.lagder(c, m=1, scl=1, axis=0) Parameters c: Array ... Read More

Evaluate a 3-D Laguerre series on the Cartesian product of x, y and z with 2d array of coefficient in Python

AmitDiwan
Updated on 26-Mar-2026 20:24:25

262 Views

To evaluate a 3-D Laguerre series on the Cartesian product of x, y and z, use the polynomial.laguerre.laggrid3d() method in Python. The method returns the values of the three-dimensional Laguerre series at points in the Cartesian product of x, y and z. If the coefficient array c has fewer than three dimensions, ones are implicitly appended to its shape to make it 3-D. The shape of the result will be c.shape[3:] + x.shape + y.shape + z.shape. Parameters The method accepts the following parameters: x, y, z − Three-dimensional series is evaluated at the points ... Read More

Evaluate a 2-D Laguerre series on the Cartesian product of x and y with 3d array of coefficient in Python

AmitDiwan
Updated on 26-Mar-2026 20:24:11

271 Views

To evaluate a 2-D Laguerre series on the Cartesian product of x and y with a 3D array of coefficients, use the numpy.polynomial.laguerre.laggrid2d() method in Python. This method returns the values of the two-dimensional Laguerre series at points in the Cartesian product of x and y. The coefficient array c should be ordered so that the coefficient of the term of multi-degree i, j is contained in c[i, j]. When c has more than two dimensions, the additional indices enumerate multiple sets of coefficients, allowing for batch evaluation. Syntax numpy.polynomial.laguerre.laggrid2d(x, y, c) Parameters ... Read More

Evaluate a Laguerre series at points x and the shape of the coefficient array extended for each dimension of x in Python

AmitDiwan
Updated on 26-Mar-2026 20:23:52

244 Views

To evaluate a Laguerre series at points x, use the polynomial.laguerre.lagval() method in Python NumPy. This function allows you to evaluate Laguerre polynomials with given coefficients at specified points, with control over how multidimensional coefficient arrays are handled. Syntax numpy.polynomial.laguerre.lagval(x, c, tensor=True) Parameters The function accepts three parameters: x: Points at which to evaluate the series. Can be scalar, list, or array c: Array of coefficients ordered so that coefficients for terms of degree n are in c[n] tensor: Boolean controlling evaluation behavior for multidimensional arrays (default: True) Understanding the ... Read More

Evaluate a Laguerre series at points x when coefficients are multi-dimensional in Python

AmitDiwan
Updated on 26-Mar-2026 20:23:32

216 Views

To evaluate a Laguerre series at points x with multi-dimensional coefficients, use the polynomial.laguerre.lagval() method in Python NumPy. This method allows evaluation of multiple polynomials simultaneously when coefficients are arranged in a multi-dimensional array. Parameters The lagval() method takes three main parameters: x: The evaluation points. Can be a scalar, list, or array c: Array of coefficients where coefficients for degree n are in c[n]. For multi-dimensional arrays, additional indices represent multiple polynomials tensor: Boolean parameter (default True) controlling how x and c interact during evaluation Basic Example with Multi-dimensional Coefficients Let's create ... Read More

Evaluate a Laguerre series at points x in Python

AmitDiwan
Updated on 26-Mar-2026 20:23:10

197 Views

To evaluate a Laguerre series at points x, use the polynomial.laguerre.lagval() method in NumPy. This function takes coefficients and evaluation points to compute Laguerre polynomial values. Syntax numpy.polynomial.laguerre.lagval(x, c, tensor=True) Parameters x: Points where the series is evaluated. Can be a scalar, list, or array. c: Array of coefficients ordered so that coefficients for terms of degree n are in c[n]. For multidimensional arrays, remaining indices enumerate multiple polynomials. tensor: If True (default), extends coefficient array shape for broadcasting. If False, x is broadcast over columns of c. Basic Example ... Read More

Raise a Laguerre series to a power in Python

AmitDiwan
Updated on 26-Mar-2026 20:22:48

197 Views

To raise a Laguerre series to a power, use the polynomial.laguerre.lagpow() method in NumPy. The method returns the Laguerre series c raised to the power pow. The argument c is a sequence of coefficients ordered from low to high. For example, [1, 2, 3] represents the series P₀ + 2*P₁ + 3*P₂. Syntax numpy.polynomial.laguerre.lagpow(c, pow, maxpower=16) Parameters The function accepts the following parameters ? c − 1-D array of Laguerre series coefficients ordered from low to high pow − Power to which the series will be raised maxpower − Maximum power allowed ... Read More

Advertisements