About 50 results
Open links in new tab
  1. Square a number with functions in python - Stack Overflow

    Square a number with functions in python [duplicate] Ask Question Asked 10 years, 4 months ago Modified 3 years, 11 months ago

  2. python - Check if a number is a perfect square - Stack Overflow

    How could I check if a number is a perfect square? Speed is of no concern, for now, just working. See also: Integer square root in python.

  3. Square a list (or array?) of numbers in Python - Stack Overflow

    Feb 29, 2016 · 7 Note: Since we already have duplicates for the vanilla Python, list comprehensions and map and that I haven't found a duplicate to square a 1D numpy array, I thought I'd keep my original …

  4. How do I calculate square root in Python? - Stack Overflow

    Jan 20, 2022 · Python sqrt limit for very large numbers? square root of a number greater than 10^2000 in Python 3 Which is faster in Python: x**.5 or math.sqrt (x)? Why does Python give the "wrong" …

  5. Least square method in python? - Stack Overflow

    Apr 26, 2017 · 16 This answer provides a walk-through on using Python to determine fitting parameters for a general exponential pattern. See also a related posts on linearization techniques and using the …

  6. python - Making turtle draw a square with a loop - Stack Overflow

    Jan 25, 2018 · Making turtle draw a square with a loop Asked 8 years, 2 months ago Modified 8 years, 2 months ago Viewed 5k times

  7. python - How do I make a matplotlib scatter plot square ... - Stack ...

    Jan 24, 2015 · In gnuplot I can do this to get a square plot: set size square What is the equivalent in matplotlib? I have tried this: import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as plt plt.

  8. Is there a library function for Root mean square error (RMSE) in python?

    Jun 20, 2013 · What is RMSE? Also known as MSE, RMD, or RMS. What problem does it solve? If you understand RMSE: (Root mean squared error), MSE: (Mean Squared Error) RMD (Root mean …

  9. Draw a square in Python Turtle - Stack Overflow

    I am following a tutorial for Python learning and I can't get the screen to open to draw. I don't get an error, it just shows that the program finish running. Maybe I missed something, can someone ...

  10. numpy - Plot Square Wave in Python - Stack Overflow

    Feb 1, 2021 · Im currently working on graphing a square wave in python using numpy and pylot. How would I plot a square wave function over multiple periods of T? I currently have: from scipy import …