Am 06.09.2016 um 10:59 schrieb Nicolas Goaziou:
> Hello,
>
> Florian Lindner writes:
>
>> I have this org mode document:
>>
>> #+BEGIN_SRC python :exports results :results file
>> import matplotlib.pyplot as plt, numpy as np
>> x = np.linspace(-2, 2, 1000)
>> plt.plot(x, np.exp(-np.power(4
Hello,
Florian Lindner writes:
> I have this org mode document:
>
> #+BEGIN_SRC python :exports results :results file
> import matplotlib.pyplot as plt, numpy as np
> x = np.linspace(-2, 2, 1000)
> plt.plot(x, np.exp(-np.power(4*x, 2)), label="shape-parameter=4")
> plt.plot(x, np.exp(-np