Extramaths

Latest version: v0.2.0

Safety actively analyzes 681866 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

0.2.0

About
A Python package that simplifies equations. This release does matrix reduction, quadratics, areas of 2D shapes, volumes of 3D shapes and the Fibonacci sequence.

Go to https://pypi.org/project/extramaths/ to install the package through pip.

Help Page
This help page shows examples of how all the functions work, for a more in-depth help page, please refer to https://github.com/WhenLifeHandsYouLemons/extramaths/wiki/Help.

0.1.1

Added a few new untested modules without any documentation at the time of pre-release.

**Full Changelog**: https://github.com/WhenLifeHandsYouLemons/extramaths/compare/v0.1.0...v0.1.1

0.1.0

About

A Python package that simplifies equations. This release only does quadratics and areas of 2D shapes.

Go to https://pypi.org/project/extramaths/ to install the package easily.

Help Page

This help page shows examples of how all the functions work, for a more in-depth help page, please refer to https://github.com/WhenLifeHandsYouLemons/extramaths/wiki/Help.

For Quadratics

~~~
from extramaths import quadsolver
~~~

~~~
value1, value2 = quadsolver.quadraticsolver(a, b, c)

print(value1)
print(value2)
~~~

For Areas of 2D Shapes

~~~
from extramaths import areasolver
~~~

Square

~~~
area_of_square = areasolver.area_square(length)

print(area_of_square)
~~~

Rectangle

~~~
area_of_rectangle = areasolver.area_rect(height, width)

print(area_of_rectangle)
~~~

Right-Angled Triangle

~~~
area_of_right_angled_triangle = areasolver.area_right_angle_tri(base, height)

print(area_of_right_angled_triangle)
~~~

Non Right-Angled Triangle

~~~
area_of_non_right_angled_triangle = areasolver.area_non_right_angle_tri(a, b, C)

print(area_of_non_right_angled_triangle)
~~~

Rhombus

~~~
area_of_rhombus = areasolver.area_rhombus(D, d)

print(area_of_rhombus)
~~~

Trapezoid

~~~
area_of_trapezoid = areasolver.area_trapezoid(a, b, height)

print(area_of_trapezoid)
~~~

Circle

~~~
area_of_circle = areasolver.area_circle(r)

print(area_of_circle)
~~~

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.