A graphing calculator made on html
screen-capture.1.mp4
Visit the site and try out the calculator yourself GraphingCalculator
GraphingCalculator Uses javascript and chart.js to plot a mathematical equation.
- Copy and paste the following link into your browser address bar and press the enter key
https://yeettheanson.github.io/GraphingCalculator/index.html
- Type
git clone https://github.com/YeetTheAnson/GraphingCalculator
into CMD - Navigate to the correct folder with
cd Html
- Type
start index.html
into CMD - Your browser of choice should open with the webpage
- Type in any mathematical equation
- Set your X domain below the keypad
- Press the graph button to start plotting
- Use the arrow button to move the caret (text cursor)
- First a lower and upper domain is determined, and the range between the domain is calculated (upper - lower domain)
- 5000 data point is obtained by using a for loop and the equation: LowerDomain + (Range*n)/5000
- Y value is calculated by subbing into the equation
- 5000 pairs of coordinates are obtained and plotted