PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Jon Lawrence   Equation Operating System   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example usage of graphing function
Class: Equation Operating System
Solve equations with multiple variables
Author: By
Last change: Updated for current version
Date: 8 years ago
Size: 194 bytes
 

Contents

Class file image Download
<?php
use jlawrence\eos\Graph
/* test page for the EOS classes */

//define the size of the graph x/y

Graph::graph("2*x^2+5", -10, 10, null, true, false, -10, 10);
Graph::outPNG();

?>