Metadata-Version: 2.1
Name: MfP3
Version: 0.0.1
Summary: Step by step solutions for MfP3
Home-page: https://github.com/pypa/sampleproject
Author: iapetos1918
Author-email: info@lernzettel.org
License: UNKNOWN
Description: # Notwendige Imports von Sympy
        
        from sympy.abc import x,y
        
        from sympy.matrices import Matrix
        
        from mfp3 import putzer, picard
        
        # Putzer
        
        M = Matrix([[1,-1], [1,3]])
        
        putzer(M)
        
        # Picard
        
        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
