differentials

calculator for differentials of x^n sequences
git clone git://git.yotsev.xyz/differentials.git
Log | Files | Refs | README | LICENSE

README.md (576B)


      1 ## Compilation
      2 
      3     $ make
      4 
      5 ## Usage
      6 
      7     $ ./prog
      8     $ ./prog post
      9     $ ./prog prior
     10 
     11 After the program is done printing, you are dropped into interactive
     12 mode where you can enter the name of a sequence to print it again or do
     13 simple addition/subtraction on it and print the result. The syntax of
     14 the three are respectively:
     15 
     16     d2n4
     17     d2n4 3
     18     d2n4 -5
     19 
     20 To exit interactive mode press Ctrl-C
     21 
     22 If you want to change the maximum power or the number of numbers in a
     23 sequence, go to `main.cpp`, change the value of `POWER` and
     24 `SEQUENCE_SIZE`` respectively and recompile.