
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Programming Articles - Page 663 of 3366

163 Views
To generate a pseudo Vandermonde matrix of the Legendre polynomial, use the legendre.legvander2d() method in Python Numpy. The method returns the pseudo-Vandermonde matrix. The shape of the returned matrix is x.shape + (deg + 1, ), where The last index is the degree of the corresponding Legendre polynomial. The dtype will be the same as the converted x.The parameter, x, y is an array of point coordinates, all of the same shape. The dtypes will be converted to either float64 or complex128 depending on whether any of the elements are complex. Scalars are converted to 1-D arrays. The parameter, deg ... Read More

160 Views
To generate a pseudo Vandermonde matrix of the Legendre polynomial, use the legendre.legvander2d() method in Python Numpy. The method returns the pseudo-Vandermonde matrix. The shape of the returned matrix is x.shape + (deg + 1, ), where The last index is the degree of the corresponding Legendre polynomial. The dtype will be the same as the converted x.The parameter, x, y is an array of point coordinates, all of the same shape. The dtypes will be converted to either float64 or complex128 depending on whether any of the elements are complex. Scalars are converted to 1-D arrays. The parameter, deg ... Read More

3K+ Views
The pandas.Series constructor have an attribute called is_unique. which is used to check whether the data present in the pandas series object is unique or not. As we know, the pandas series object is a single-dimensional data structure, which stores any type of data with label representation.By using the “is_unque” attribute we can check if all data present in the series object holds unique values or not. And it returns a boolean value as an output.It returns “True” if the data present in the given series object is unique, otherwise, it will return “False”.Example 1import pandas as pd # ... Read More

179 Views
To generate a pseudo Vandermonde matrix of the Legendre polynomial, use the polynomial.legvander() method in Python Numpy. The method returns the pseudo-Vandermonde matrix. The shape of the returned matrix is x.shape + (deg + 1, ), where The last index is the degree of the corresponding Legendre polynomial. The dtype will be the same as the converted x.The parameter, x returns an Array of points. The dtype is converted to float64 or complex128 depending on whether any of the elements are complex. If x is scalar it is converted to a 1-D array. The parameter, deg is the degree of ... Read More

133 Views
To evaluate a Hermite_e series at points x, use the hermite.hermeval() method in Python Numpy. The 1st parameter, x, if x is a list or tuple, it is converted to an ndarray, otherwise it is left unchanged and treated as a scalar. In either case, x or its elements must support addition and multiplication with themselves and with the elements of c.The 2nd parameter, C, an array of coefficients ordered so that the coefficients for terms of degree n are contained in c[n]. If c is multidimensional the remaining indices enumerate multiple polynomials. In the two dimensional case the coefficients ... Read More

177 Views
To evaluate a Hermite_e series at points x, use the hermite.hermeval() method in Python Numpy. The 1st parameter, x, if x is a list or tuple, it is converted to an ndarray, otherwise it is left unchanged and treated as a scalar. In either case, x or its elements must support addition and multiplication with themselves and with the elements of c.The 2nd parameter, C, an array of coefficients ordered so that the coefficients for terms of degree n are contained in c[n]. If c is multidimensional the remaining indices enumerate multiple polynomials. In the two dimensional case the coefficients ... Read More

173 Views
To check if the data present in the series is monotonically decreasing or not, we can use the is_monotonic_decreasing property of the pandas Series constructor.The monotonically decreasing data is nothing but continuously decreasing values. And the attribute “is_monotonic_decreasing” is used to verify that the data in a given series object is always decreasing or not. And this attribute returns a boolean value as an output.Example 1import pandas as pd # create a series s = pd.Series([100, 57, 23, 10, 5]) print(s) print("Is monotonically decreasing: ", s.is_monotonic_decreasing)ExplanationHere, we initialized a Series with a python list of integer values ... Read More

195 Views
To evaluate a Hermite_e series at points x, use the hermite.hermeval() method in Python Numpy. The 1st parameter, x, if x is a list or tuple, it is converted to an ndarray, otherwise it is left unchanged and treated as a scalar. In either case, x or its elements must support addition and multiplication with themselves and with the elements of c.The 2nd parameter, C, an array of coefficients ordered so that the coefficients for terms of degree n are contained in c[n]. If c is multidimensional the remaining indices enumerate multiple polynomials. In the two dimensional case the coefficients ... Read More

1K+ Views
To check if the data in the series is monotonically increasing or not, we can use the is_monotonic attribute of the pandas Series constructor.The monotonically increasing is nothing but continuously increasing data. And the attribute “is_monotonic” is used to verify that the data in a given series object is always increasing or not.In the pandas series constructor, we have another monotonic attribute for checking data increment which is nothing but is_monotonic_increasing (alias for is_monotonic).Example 1# importing required packages import pandas as pd import numpy as np # creating pandas Series object series = pd.Series(np.random.randint(10, 100, 10)) print(series) print("Is ... Read More

175 Views
To generate a Legendre series, use the polynomial.legendre.legfromroots() method in Python. The method returns a 1-D array of coefficients. If all roots are real then out is a real array, if some of the roots are complex, then out is complex even if all the coefficients in the result are real. The parameter roots are the sequence containing the roots.StepsAt first, import the required library −import numpy as np from numpy.polynomial import legendre as LTo generate a Legendre series, use the polynomial.legendre.legfromroots() method in Python −print("Result...", L.legfromroots((-1, 0, 1)))Get the datatype −print("Type...", L.legfromroots((-1, 0, 1)).dtype)Get the shape −print("Shape...", L.legfromroots((-1, 0, ... Read More