Skip to content

pius-/poly-calc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

poly-calc

Polynomial Calculator in Common Lisp

Introduction

PolyCalc is a polynomial calculator written in GNU CLISP 2.48. It implements the polynomial arithmetic operations; addition, subtraction and multiplication.

Instructions

Load polycalc by calling;

(load "polycalc")

Call the addition, subtraction and multiplication functions;

(poly+ p1 p2)
(poly- p1 p2)
(poly* p1 p2)

where p1 and p2 are polynomials represented using the representation below.

##Representation 3(x^2)(y^3) + 4x - 1

'( (3(x 2)(y 3)) (4(x 1)) (-1) )

About

Polynomial Calculator in Common Lisp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published