Skip to content

Instantly share code, notes, and snippets.

@sverhoeven
Created October 2, 2020 08:17
Show Gist options
  • Select an option

  • Save sverhoeven/82fda2b94be33e537dbf570fd62f26c4 to your computer and use it in GitHub Desktop.

Select an option

Save sverhoeven/82fda2b94be33e537dbf570fd62f26c4 to your computer and use it in GitHub Desktop.
run-cpp-on-web: webassembly
#ifndef H_NEWTONRAPHSON_HPP
#define H_NEWTONRAPHSON_HPP
class NewtonRaphson {
public:
NewtonRaphson(float tolerance_in);
float solve(float initial_guess);
private:
float tolerance;
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment