Blame | Last modification | View Log | Download
## UsageTo create a numeric, use the `PhpOffice\Math\Element\Numeric` class.### Methods#### getValueThe method has no parameter.#### setValueThe method has one parameter :* `float` **$value**## Example### Math<math display="block"><mn>3</mn></math>### XML``` xml<math display="block"><mn>3</mn></math>```### PHP``` php<?phpuse PhpOffice\Math\Element;use PhpOffice\Math\Math;$math = new Math();$identifier = new Element\Numeric(3);$math->add($identifier);```