Metadata-Version: 2.1
Name: MfP3
Version: 0.0.3
Summary: Step by step solutions for MfP3
Home-page: UNKNOWN
Author: iapetos1918
Author-email: 
License: UNKNOWN
Description: # Notwendige Imports aus MfP3
        ```python
        from MfP3 import putzer
        
        from MfP3 import picard
        ```
        
        # Notwendige Imports aus sympy
        
        ```python
        
        from sympy.abc import x,y
        
        from sympy.matrices import Matrix
        
        ```
        
        # Putzer
        
        ```python
        
        M = Matrix([[1,-1], [1,3]])
        
        putzer(M)
        
        ```
        
        # Picard
        
        ```python
        
        f = y**2
        
        x0 = 0
        
        y0 = 1
        
        n = 3
        
        picard(f,x0,y0,n)
        
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
