Python for Engineers
Solve Problems by Coding Solutions - A Complete solution for python programming
Blog Pages
(Move to ...)
Code
Top 10 Blogs
NumPy Tutorials
Distributions
Self Learning
IDE
About
▼
Python programto find Sine and Cosine Values plot using Matplotlib
›
import numpy as np import matplotlib.pyplot as plt x=np.linspace(0,1) data1 = np.sin(x) data2 = np.cos(x) fig, ax1 = plt.subplots() co...
Solving linear mathematical equations with two variable
›
import numpy as np A=np.array([[1.5,1],[3.75,4]]) B=np.array([1800,900]) x=np.linalg.solve(A,B) print("Values of A and B variables:...
Operations on Matrices using Python program
›
import numpy as np A = np.array([[4,1,7],[2,1,8],[3 ,7,1]]) B = np.array([[6,1,1],[2,1,5],[2,3,1]]) C=A.dot(B) print("Values of Fir...
Temperature Conversion Table
›
def Fah(): F=int(input('Enter the temperature on Fahrenheit(F)')) C=(F - 32) * 5/9 K=(F - 32) * 5/9 + 273.15 pri...
Newton Raphson Method
›
# Newton Raphson Method # The Newton-Raphson method (also known as Newton's method) is a way # to quickly find a good approximation f...
‹
›
Home
View web version