Skip to content

Instantly share code, notes, and snippets.

@yakupyavas
Last active October 2, 2021 08:21
Show Gist options
  • Save yakupyavas/037956cf1c594eee20fb to your computer and use it in GitHub Desktop.
Save yakupyavas/037956cf1c594eee20fb 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