You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pytuq/rv/pcrv.py
+24-6Lines changed: 24 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -738,15 +738,15 @@ class PC1d():
738
738
domain (np.ndarray): A 1d array of size :math:`2` indicating the domain of definition.
739
739
p0 (callable): The 0th order basis evaluator from 1d np.ndarray to 1d np.ndarray.
740
740
p1 (callable): The 1rd order basis evaluator from 1d np.ndarray to 1d np.ndarray.
741
-
pctype (str): The PC type. Only 'LU' and 'HG' are implemented.
741
+
pctype (str): The PC type. Only 'LU', 'nLU', 'HG' and 'nHG' are implemented.
742
742
sample (callable): int->float sampling function, where the input is a number of samples requested, and the output is an 1d array of the corresponding size.
743
743
"""
744
744
745
745
def__init__(self, pctype='LU'):
746
746
"""Initialization.
747
747
748
748
Args:
749
-
pctype (str): The PC type. Only 'LU' and 'HG' are implemented. Defaults to 'LU'.
749
+
pctype (str): The PC type. Only 'LU', 'nLU', 'HG' and 'nHG'are implemented. Defaults to 'LU'.
0 commit comments