PartKeepr\SiPrefixBundle\Entity\SiPrefix::calculateProduct PHP Method

calculateProduct() public method

Calculates the product for a given value.
public calculateProduct ( $value ) : float
$value float The value to calculate the product
return float The resulting value
    public function calculateProduct($value)
    {
        return $value * pow($this->base, $this->exponent);
    }