We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I have tried to used the code for my database and it seems to me that there is an error relating to nodes of polynomials.
U, W = polynoms.getNodesAndWeights( ot.Indices([legendre_quadrature_order] * dimension * 2))
would create nodes U independent of the domain of definition. Thus
X = np.repeat(scale, 2) * U + np.repeat(shift, 2)
would create X which exceed the domain of definition. In consequence, we would get nan for matrix C.
Could you please try to fix this problem? Thank you in advance.
The text was updated successfully, but these errors were encountered:
I think we should replace
by
X = np.array(list(scale)* 2) * U + np.array(list(shift)*2)
Please check it this is correct.
Sorry, something went wrong.
No branches or pull requests
Hello,
I have tried to used the code for my database and it seems to me that there is an error relating to nodes of polynomials.
would create nodes U independent of the domain of definition. Thus
would create X which exceed the domain of definition. In consequence, we would get nan for matrix C.
Could you please try to fix this problem? Thank you in advance.
The text was updated successfully, but these errors were encountered: