# frogpy **Repository Path**: xt19970822/frogpy ## Basic Information - **Project Name**: frogpy - **Description**: Shared Python files to achieve some mathematical algorithms and equation solving - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-21 - **Last Updated**: 2021-10-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # frogpy Shared Python files to achieve some mathematical algorithms and equation solving This is an algorithm package about python, how to use it? If you are ubuntu: just run **sudo pip3 install frogpy** in the terminal If you are windows: open the cmd command and run **pip3 install frogpy**, or if you have anaconda installed, you can run **pip3 install frogpy** on its internal command If you are using a mac: you can try to run **pip3 install frogpy** on the command line After everything is ready, create a new Python file in your Python editor and enter the following ```python import frogpy.algebra.matrix as matrix a = matrix.tri_diagonal(4, 2, 1, 1) print(a) ``` No error is reported, and the result of the operation is a matrix. Congratulations on your successful installation