Skip to content

Instantly share code, notes, and snippets.

@Jeket
Forked from yakupyavas/example.php
Created November 9, 2019 10:27
Show Gist options
  • Save Jeket/a586d2705721d64ce125dd3850cd5314 to your computer and use it in GitHub Desktop.
Save Jeket/a586d2705721d64ce125dd3850cd5314 to your computer and use it in GitHub Desktop.
Example
<?php
require_once 'complex.php';
#Examples
$complex = new Complex(); //instance
$complex->set_comp_num(3,4); //define number(Default 0,0)
echo"Number: ".$complex->comp_numb."<br>";
echo"Real: ".$complex->real."<br>";
echo"Imaginer: ".$complex->imaginer."<br>";
echo "Modulus: ".$complex->modulus()."<br>";
echo "Polar Form: ".$complex->polar_form()."<br>";
echo "Conjugate Number: ".$complex->conj_number()."<br>";
echo "Conjugate Form: ".$complex->conj_form()."<br>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment