Merge pull request #225 from Riei-Joaquim/patch-3

Adding include to determinantToMatrix22  and object instantiation
This commit is contained in:
Luke Weiler
2020-10-19 10:41:53 -04:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -79,3 +79,4 @@ from .binary2sComplement import *
from .matrixInversion import *
from .sectorAreaFunc import*
from .meanMedianFunc import*
from .determinantToMatrix22 import *

View File

@@ -111,3 +111,4 @@ binary2sComplement = Generator("Binary 2's Complement", 73, "2's complement of 1
invertmatrix = Generator("Inverse of a Matrix", 74, "Inverse of a matrix A is", "A^(-1)", matrixInversion)
sectorArea=Generator("Area of a Sector", 75,"Area of a sector with radius, r and angle, a ","Area",sectorAreaFunc)
meanMedian=Generator("Mean and Median", 76,"Mean and median of given set of numbers","Mean, Median",meanMedianFunc)
intMatrix22determinant = Generator("Determinant to 2x2 Matrix", 77, "Det([[a,b],[c,d]]) =", " a * d - b * c", determinantToMatrix22)