Skip to main content
  1. Projects/

derive

·61 words·1 min
Jake Roggenbuck
Author
Jake Roggenbuck
I am currently studying Computer Science

derive #

Calculate the derivative of a function non-algebraically

Build #

  • Run ./scripts/build.sh

Config #

You can replace this function with anything you would like to find the derivative of.

double function(double x) {
  // f(x) = x^3 + 4x + 2
  return (pow(x, 3) + 4 * x) + 2;
}

Run #

  • Run ./cmake/derive > data/out.csv
  • Run python3 plotting/main.py

image