Skip to main content

invert

UnitAlgebra& invert();

Take the reciprocal of the UnitAlgebra. For example "5MHz" will become "200ns".

Parameters

  • returns The UnitAlgebra (this*) after taking the reciprocal.

Example

SST::UnitAlgebra* num = new UnitAlgebra("5MHz");
UnitAlgebra clockPeriod = num->invert();
#include <sst/core/unitalgebra.h>