Posts by Sai Prasanna

Author Biographical Info: Not available

numpy.polyfit in Python

By Sai Prasanna

In this, we are going to see how to fit the data in a polynomial using the polyfit function from standard library numpy in Python. Suppose, if we have some data then we can use the.... Read More

numpy.linspace() in Python

By Sai Prasanna

In this tutorial, we are going to see the linspace() which is the built-in function in Python’s numpy library. linspace function and the range function are quite similar. Thi.... Read More

Python program to solve Quadratic equation

By Sai Prasanna

In this tutorial, we are going to learn how to solve the quadratic equation program in Python. The standard form of the quadratic equation is ax2+bx+c=0. Where a, b,c are real numb.... Read More

Matplotlib Bar Chart Tutorial in Python

By Sai Prasanna

This is the full tutorial on Matplotlib bar chart in Python. What are Bar graphs..? Let us take an example of Icecream flavors to know the number of people who like the different f.... Read More

How to plot simple parabola using matplotlib in Python

By Sai Prasanna

In this tutorial, we are going to learn how to plot a parabola in Python. To show the plotting of the graph on digital systems(computers) we need some sort of functions and librari.... Read More

How to manage hyperbolic functions in Python

By Sai Prasanna

First, let us see the basic definition of the function. “A function is a block of organized code that performs some specific task.” In this tutorial, we are going to st.... Read More

Fraction Module in Python

By Sai Prasanna

In this tutorial, we are going to learn over the basics of working with fractions in Python with some simple examples. And also we will learn to manage fractions and perform variou.... Read More

Related Posts