This commit is contained in:
2020-11-11 08:16:27 -03:00
parent fc688b7798
commit 84b4b80083
2 changed files with 4 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ This python namespace is made for applied Numeric Calculus of Linear Algebra. It
* Insert user input into a matrix or a vector. * Insert user input into a matrix or a vector.
* Calculate Eigen Values * Calculate Eigenvalues and his Eigenvector
* Use methods to proccess the matrices. * Use methods to proccess the matrices.
* Identity Matrix * Identity Matrix
@@ -18,8 +18,6 @@ This python namespace is made for applied Numeric Calculus of Linear Algebra. It
* LU Decomposition * LU Decomposition
* Cramer * Cramer
* Calculate eigenvalues and its' corresponding eigenvector (by the methods of Power Method for the eigenvalues, and Shifted Inverse Power Method for the eigenvector)
## Syntax ## Syntax
To call the package *scan* use the syntax: `from Seals import scan`. The package also has a function for *Numpy* arrays and *Pandas* dataframes, and used the following syntax `scan.np(path)` for *Numpy* and `scan.pd(path)` for *Pandas*, where `path` is the path to your directory. To call the package *scan* use the syntax: `from Seals import scan`. The package also has a function for *Numpy* arrays and *Pandas* dataframes, and used the following syntax `scan.np(path)` for *Numpy* and `scan.pd(path)` for *Pandas*, where `path` is the path to your directory.
@@ -28,7 +26,7 @@ To call the package *write* use the syntax: `from Seals import write`. The packa
To call the package *insert* use the syntax: `from Seals import insert`. The package also has a function for *matrix* and another for *vector*, and it has the following syntax `insert.function(array)`, where `insert` is the *Python Module* and `function` is either a `matrix` or a `vector` and `array` is either a *matrix* or a *vector*. To call the package *insert* use the syntax: `from Seals import insert`. The package also has a function for *matrix* and another for *vector*, and it has the following syntax `insert.function(array)`, where `insert` is the *Python Module* and `function` is either a `matrix` or a `vector` and `array` is either a *matrix* or a *vector*.
There is also a function that given a matrix it return all real eigen values There is also a function that given a matrix it return all real eigenvalues and all real eigenvectors, this function uses the power method to find the eigenvalues and inverse power method for the eigenvector.
### Processes ### Processes

View File

@@ -8,7 +8,7 @@ This python namespace is made for applied Numeric Calculus of Linear Algebra. It
* Insert user input into a matrix or a vector. * Insert user input into a matrix or a vector.
* Calculate Eigen Values * Calculate Eigenvalues and his Eigenvector
* Use methods to proccess the matrices. * Use methods to proccess the matrices.
* Identity Matrix * Identity Matrix
@@ -26,7 +26,7 @@ To call the package *write* use the syntax: `from Seals import write`. The packa
To call the package *insert* use the syntax: `from Seals import insert`. The package also has a function for *matrix* and another for *vector*, and it has the following syntax `insert.function(array)`, where `insert` is the *Python Module* and `function` is either a `matrix` or a `vector` and `array` is either a *matrix* or a *vector*. To call the package *insert* use the syntax: `from Seals import insert`. The package also has a function for *matrix* and another for *vector*, and it has the following syntax `insert.function(array)`, where `insert` is the *Python Module* and `function` is either a `matrix` or a `vector` and `array` is either a *matrix* or a *vector*.
There is also a function that given a matrix it return all real eigen values There is also a function that given a matrix it return all real eigenvalues and all real eigenvectors, this function uses the power method to find the eigenvalues and inverse power method for the eigenvector.
### Processes ### Processes