Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ewliang/sparse-poly-calculator-c-

A C++ Sparse Poly calculator that can add or multiply polynomials created in the main driver. The program utilizes vectors to store the polynomial term values. It automatically sorts the terms from least to greatest exponent order. I wish I had such a program back in high school to tackle those tedious polynomial problems.
https://github.com/ewliang/sparse-poly-calculator-c-

c c-plus-plus calculator cpp math polynomial-calculator visual-studio

Last synced: 8 days ago
JSON representation

A C++ Sparse Poly calculator that can add or multiply polynomials created in the main driver. The program utilizes vectors to store the polynomial term values. It automatically sorts the terms from least to greatest exponent order. I wish I had such a program back in high school to tackle those tedious polynomial problems.

Awesome Lists containing this project

README

        

Sparse-Poly-Calculator-C-
=========================

A C++ Sparse Poly calculator that can add or multiply polynomials created in the main driver. The program utilizes vectors to store the polynomial term values. It automatically sorts the terms from least to greatest exponent order. I wish I had such a program back in high school to tackle those tedious polynomial problems.