Michael Baudin

Results 113 issues of Michael Baudin

This separates the profiling from the main Notebook. This also adds OpenTURNS in the benchmark, with interesting results. The binning system in OpenTURNS takes place as long as the sample...

In the doc of the `BasisFactory` class: http://openturns.github.io/openturns/master/user_manual/response_surface/_generated/openturns.BasisFactory.html there is no example.

doc
metamodel

The SobolSimulationAlgorithm class has at least two documentation issues. * The purpose of the batchsize parameter is unclear, so that the user cannot understand why he would modify it. *...

doc
sensitivity

The example in Bandwidth sensitivity in kernel smoothing has a bug: https://openturns.github.io/openturns/master/auto_data_analysis/distribution_fitting/plot_smoothing_mixture.html We see that there is a grid of graphics which is wrongly printed: ![image](https://user-images.githubusercontent.com/31351465/191358433-41c3490b-a4e5-4a4b-a621-0148dce9f668.png) This happens a second...

doc
graph

The sum of a Gaussian and a specific square root of a random variable sometimes fail: ``` import openturns as ot import numpy as np X1 = ot.Normal() X2 =...

doc
Performance

* The mathematical definition of the SRC indices is not known: http://openturns.github.io/openturns/master/user_manual/_generated/openturns.CorrelationAnalysis_SRC.html * The mathematical definition of the signed SRC indices is not known: http://openturns.github.io/openturns/master/user_manual/_generated/openturns.CorrelationAnalysis_SignedSRC.html The doc for this is...

doc

The `AbdoRackwitz` class does not seem to honor the `setMaximumAbsoluteError` and `setMaximumRelativeError` methods. In the following script, we estimate the probability of failure of the cantilever beam example. ```Python import...

needs review

The number of files in: https://github.com/openturns/openturns/blob/master/python/src is too large : there is currently almost 1500 files in the directory. This prevents from using github interactive features. Indeed, only the first...

No distribution factory can set a parameter and estimate the others. For example, LogNormalFactory cannot build with given gamma. I have a sample and I want to fit a `LogNormal`...

enhancement

The following script: ```Python import openturns as ot ot.Log.Show(ot.Log.NONE) model = ot.SymbolicFunction(["E", "F", "L", "I"], ["F*L^3/(3*E*I)"]) E = ot.Beta(0.9, 2.27, 2.5e7, 5.0e7) # in N/m^2 F = ot.LogNormal() # in...

bug