Michael Baudin

Results 91 comments of Michael Baudin

Thanks! A simplified version of the otwrapy example, without file management and with more input arguments in the constructor (e.g. some parameters of the distribution such as the means and...

There is another example there: https://github.com/mbaudin47/hpcuqtraining/blob/9ed990fb4873c19bd9f028d56a2ad9182c1fe9d6/2019/Scripts/wrapper.py#L41

To get your sample input work, convert it into a Sample, otherwise it is a MemoryView. Your script is interesting, but does not correspond to my purpose. Another example would...

Why not setting the printing accuracy to 14 digits instead of 15? This would make the test pass.

Changed 7 years ago by regis.lebrun@… Attachment bug_save_python_function.py​ added Script to show an example of an `OpenTURNSPythonFunction` with OpenTURNS attributes that cannot be saved : ```python from openturns import *...

Here are the results: ![image](https://user-images.githubusercontent.com/31351465/115300625-795cf680-a160-11eb-8c94-d1a73b6a8cd2.png)

I suggest a few more recent references on the topic. * M.J.W. Jansen, 1999, "_Analysis of variance designs for model output_", Computer Physics Communication, 117, 35–43 * "_Making best use...

There are two ways to have a workaround for this crash. Workaround 1: set directly the optimization solver. My intent was actually to set the optimization solver user by the...

I do not think that the current is ok for single curves, as they should use the default palette (they are currently using either blue, or red colors): this is...

You may set the margins of the subplot: https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.subplots_adjust.html The code would be: ```Python pl.subplots_adjust(hspace=0.4, wspace=0.4) ``` In this example, the full script is: ```Python from openturns.viewer import PlotDesign import...