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

v1.0.4 2024-06-26 23:32 UTC

This package is not auto-updated.

Last update: 2026-01-08 06:16:49 UTC


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);