math / symbol
A package that contains a lot of mathematical symbols
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/math/symbol
Requires
- php: ^8.2
README
Math Provider
This package provides a set of utility functions for mathematical operations. Installation
To install the package, run the following command in your terminal:
composer require math/math-prov
Alternatively, you can add the following to your composer.json file:
json
"require": {
"math/math-prov": "^1.0"
}
use Math\MathProv\MathFacade; // To get powers $math_powers = MathFacade::get_powers(); // To get roots $math_roots = MathFacade::get_roots(); // To get all math symbols $math_symbols = MathFacade::get_math_symbols(); // To get a fraction $fraction = MathFacade::get_fraction($numerator, $denominator);