Go back

Math_Lib

Now calculate the third degree root...

Buy Me A Coffee

NPM

https://www.npmjs.com/package/loganmatic

Installation

npm install loganmatic

Or

yarn add loganmatic

ENG

!! JAVASCRIPT !!

Personal library created in JavaScript and Python for common use. In development...

To use as an NPM package, simply use npm i loganmatic.

To import, use:

import anythingYouWant from "loganmatic.js"

Then, you can use it as follows:

console.log(anythingYouWant.EulerNumber);
console.log(anythingYouWant.factor(100));

Evaluated modules to calculate

If you find any errors in the code, please send them to me. It will be of great help!

Usage example:

import Mathematics from "loganmatic";
console.log(Mathematics.EulerNumber);
const equationRoots = Mathematics.cubicEquation(1, -6, 11, -6);
console.log(equationRoots.value); // Returns an array
console.log(equationRoots.msg); // Returns a descriptive message

Made by Gabriel Logan.