3D interactive Graph Animation in Jupyter Notebook In this blog we are going to learn how to make 3D graphs and 3D interactive graph animation in jupyter notebook.We ar…
Read moreHow to plot a Sin Graph in Python In this blog we will learn how to plot a sin graph in python import matplotlib.pyplot as plt # include module for graph plotting impor…
Read moreTensorFlow 2.0 for beginners Installing the Latest version and executing a simple program in jupyter How to run tensorflow 1.x code in in tensorflow 2.0 and fix attrib…
Read moreHow to plot parabola in Python Code for python user friendly import matplotlib.pyplot as plt import numpy as np x = np.linspace(-50,50,100) y = x**2 plt.plot(x,y) plt.…
Read moreHow to plot shear force and bending moment diagram? import math import matplotlib.pyplot as plt #Variable Decleration w1=400 #UDL in lb/ft P=400 #Point load at C in lb …
Read moreHeat transfer with internal Heat generation same temperature on both side graph plotting in python In this case suppose we have a slab of and temperature on both side f…
Read moreHow to plot ellipse in python There are two ways to do one is import numpy as np import matplotlib.pyplot as plt t = np.linspace(0,360,360) x =10*np.cos(np.radians(t)…
Read moreSpiral graph plotting in python Non interactive spiral plotting from matplotlib.pyplot import * from numpy import * r = linspace(0,20,360) t = linspace(0,2000,360) x = …
Read morePython code Heat Transfer | Heat generation curve when temperature on both side remain same in python Connecting Rod velocity and acceleration analysis in python [inte…
Read more
Social Plugin