Kotlin - How Can A Math Function Be Graphically Plotted Using Graphview?
I have the following function, well it is the formula of the normal distribution and my goal is to graph it using the GraphView library. Well, I have the following: Id -- plot
Solution 1:
It looks like the python example is plotting the .pdf
"probability density function" while the kotlin example is plotting the .cumulativeProbability
which is essentially the integral of the PDF. Most likely you'll want to use the .density
method instead.
Post a Comment for "Kotlin - How Can A Math Function Be Graphically Plotted Using Graphview?"