Skip to content

Instantly share code, notes, and snippets.

View enjis's full-sized avatar
🏠
Working from home

enjis

🏠
Working from home
View GitHub Profile
@enjis
enjis / scientific_calculator.py
Last active August 2, 2018 11:25
This calculator has almost all important scientific and mathematical functions used in engineering.It has also an additional window for matrix multiplication
from tkinter import*
from tkinter import ttk
from PIL import ImageTk, Image
import math
import webbrowser
import numpy as np
def btntype(numop):
@enjis
enjis / matrixmul.py
Created July 6, 2018 11:31
for matrix multiplication
import numpy as np
m = int(input('no.of rows in first matrix'))
n = int(input('no. of columns in first matrix'))
p = int(input('no.of rows in second matrix'))
q = int(input('no. of columns in second matrix'))
if n != p:
print("multiplication not feasible")
else: