Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
Python
21.3K+ articles
Misc
8.8K+ articles
AI-ML-DS
4.7K+ articles
Python-numpy
1.3K+ articles
Python numpy-arrayManipulation
200+ articles
Python numpy-polynomials
104+ articles
Numpy
81+ articles
Python matrix-program
64+ articles
Python numpy-program
33+ articles
Python numpy-Mathematical Function
223+ posts
Recent Articles
Popular Articles
How to use the NumPy sum function?
Last Updated: 16 June 2022
NumPy's sum() function is extremely useful for summing all elements of a given array in Python. In this article, we'll be going over how to utilize this function and how t...
read more
Python
Python-numpy
Picked
Python numpy-Mathematical Function
Methods on NumPy.add()
Last Updated: 10 June 2020
The ufunc expect a set of scalars as input and produce a set of scalars as output. Universalfunctions can be related to mathematical aspects such as, add, subtract, divide...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Write From Home
Python | Numpy polynomial legint() method
Last Updated: 30 January 2020
np.legint() method is used to integrate a Legendre series.Syntax : np.legint(c, m=1, k=[], lbnd=0, scl=1, axis=0)Parameters:c :[array_like] Array of Legendre series coe...
read more
Python
Python numpy-Mathematical Function
Python numpy-polynomials
Python | Numpy polynomial legline() method
Last Updated: 30 January 2020
np.legline() method is used to find a Legendre series whose graph is a straight line.Syntax : np.legline(off, scl)Parameters:off, scl :[scalar] The specified line is gi...
read more
Python
Python numpy-Mathematical Function
Python numpy-polynomials
Python | Numpy polynomial lagline() method
Last Updated: 30 January 2020
np.lagline() method is used to find a Laguerre series whose graph is a straight line.Syntax : np.lagline(off, scl)Parameters:off, scl :[scalar] The specified line is gi...
read more
Python
Python numpy-Mathematical Function
Python numpy-polynomials
Python | Numpy np.lagval() method
Last Updated: 23 January 2020
With the help of np.lagval() method, we can get the laguerre series at point x by using np.lagval() method.Syntax : np.lagval(x, c)Return : Return the laguerre series at p...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.lagval2d() method
Last Updated: 23 January 2020
With the help of np.lagval2d() method, we can get the 2-D laguerre series at point x by using np.lagval2d() method.Syntax : np.lagval2d(x, y, c)Return : Return the 2-D lag...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.lagval3d() method
Last Updated: 23 January 2020
With the help of np.lagval3d() method, we can get the 3-D laguerre series at point x by using np.lagval3d() method.Syntax : np.lagval3d(x, y, z, c)Return : Return the 3-D ...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.lagfit() method
Last Updated: 23 January 2020
With the help of np.lagfit() method, we can get the least squares fit of laguerre series of a given data by using np.lagfit() method.Syntax : np.lagfit(x, y, deg)Return : ...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.lagtrim() method
Last Updated: 23 January 2020
With the help of np.lagtrim() method, we can trim the small trailing values of the polynomial by using np.lagtrim() method.Syntax : np.lagtrim(c, tol)Return : Return the t...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.mapparms() method
Last Updated: 23 January 2020
With the help of np.mapparms() method, we can get the linear mapping parameters between the domains by using np.mapparms() method.Syntax : np.mapparms(old, new)Return : Re...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.leggauss() method
Last Updated: 31 December 2019
np.leggauss() Computes the sample points and weights for Gauss-legendre quadrature. These sample points and weights will correctly integrate polynomials of degree 2*deg - ...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.legadd() method
Last Updated: 31 December 2019
np.legadd() method is used to add one Legendre series to another.It returns the sum of two Legendre series c1 + c2. Syntax : np.legadd(c1, c2)Parameters:c1, c2 :[ arr...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.legsub() method
Last Updated: 31 December 2019
np.legub() method is used to subtract one Legendre series to another.It returns the difference of two Legendre series c1 - c2. Syntax : np.legub(c1, c2)Parameters:c1, c2...
read more
Python
Python-numpy
Python numpy-Mathematical Function
Python | Numpy np.legmul() method
Last Updated: 31 December 2019
np.legmul() method is used to multiply one Legendre series to another.It returns the product of two Legendre series c1 * c2. Syntax : np.legmul(c1, c2)Parameters:c1, c2 ...
read more
Python
Python-numpy
Python numpy-Mathematical Function
1
2
3
4
...
15
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !