Hello to my G+ Friends.
Oct. 9th, 2018 03:14 pm![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Alright. Long time now write here. As G+ is about to retire, I'm planning a come-back to LJ/DW. Sure enough, would be useful to import my posts from other services, but for now, let me see, if my math markup still works:
=\sqrt{\frac{c}{2\pi}}~~\frac{e^{ -\frac{c}{2(x-\mu)}}} {(x-\mu)^{3/2}})
That should be Lévy distribution over the domain
, where
is the location parameter and
is the scale parameter.
Ah, and yeah, we could Draw that in Sympy:

This brings me to think, that we could have here much more thoughtful and in-depth conversations than anything like modern social nets. One thing that I miss, is multilingualism... but yeah, こんにちは、你好、Sveiki ~ HTML freedom rulez!
That should be Lévy distribution over the domain
Ah, and yeah, we could Draw that in Sympy:
from sympy import symbols from sympy import sqrt, pi, E from sympy import plot x, mu, c = symbols('x mu c') levy = ((c/(2*pi))**(1/2)) * ((E**(-c/(2*(x-mu)))) / ((x-mu)**(2/3))) %matplotlib plot(levy.subs({mu: 0, c: 1}))

This brings me to think, that we could have here much more thoughtful and in-depth conversations than anything like modern social nets. One thing that I miss, is multilingualism... but yeah, こんにちは、你好、Sveiki ~ HTML freedom rulez!