About 5,470,000 results
Open links in new tab
  1. scipy - How to calculate the inverse of the normal cumulative ...

    How do I calculate the inverse of the cumulative distribution function (CDF) of the normal distribution in Python? Which library should I use? Possibly scipy?

  2. Solving for the inverse of a function in R - Stack Overflow

    Apr 10, 2012 · What kind of inverse are you finding? If you're looking for a symbolic inverse (e.g., a function y that is identically equal to sqrt (x)) you're going to have to use a symbolic system. …

  3. How do you find the inverse of a function? - Stack Overflow

    Jun 29, 2022 · Specifically, I am trying to find the maximum y-value of a function, calculate %90 of that value, and then plug that back in to the inverse of the function in order to find the x-value …

  4. java - What is the inverse function to XOR? - Stack Overflow

    Jan 11, 2013 · There is XOR function in Java - a^b For example: 5^3 = 6 Can you tell me the inverse function? If I have 6 and 3 can I get range of numbers which include number 5?

  5. The reverse/inverse of the normal distribution function in R

    Sep 24, 2014 · 8 I'm not sure if the inverse of the density function is built in -- it's not used nearly as often as the inverse of the cumulative distribution function. I can't think offhand of too many …

  6. Finding the inverse of a function in Python (possibly using SymPy)

    Mar 25, 2020 · Is there a way to find the inverse of a function in Python? For example, if I have the function def f(x): return x**2, is there a function in Python/any Python library function that …

  7. Find the inverse function in R - Stack Overflow

    Aug 10, 2017 · Is there a function in R that generates the inverse of a given function? To be more specific: I have a polynomial of a third order and I need the inverse of it. It's strictly …

  8. math - Inverse Logistic / Sigmoid Function - Stack Overflow

    Apr 10, 2012 · What is the inverse of the sigmoid (i.e. standard logistic) function? sigmoid(x) = 1 / (1 + exp(-x))

  9. Modular multiplicative inverse function in Python - Stack Overflow

    201 Does some standard Python module contain a function to compute modular multiplicative inverse of a number, i.e. a number y = invmod(x, p) such that x*y == 1 (mod p)? Google …

  10. python - Calculate inverse of a function--Library - Stack Overflow

    Mar 4, 2013 · This function only is invertible if you look at a domain of x that doesn't have duplicate solutions. Once you are sure your function, f(x)=y has a unique inverse, solve the …