DataConversion/Math Service
-
- Posts: 88
- Joined: August 26th, 2021, 5:21 pm
- Contact:
DataConversion/Math Service
Can someone put some example of how to use this service?
word count: 11
Tags:
-
- Posts: 329
- Joined: August 26th, 2021, 9:18 am
- Contact:
Re: DataConversion/Math Service
The Math service is used to do calculations. I have this sample process.
Expression is the math equation you want to evaluate.
DecimalPrecision is how many decimals should be outputed.
These equations end up being:
SimpleAddition: 5+2=7.000
SimpleDivision: 10/2=5.0
MoreComplex: (((5^2)*6)-10)/6=23.33
I have a CreateServiceNode service to set sample values.
Then in the Math service I have a few sample equations setup.
Name is the name the output will be given.Expression is the math equation you want to evaluate.
DecimalPrecision is how many decimals should be outputed.
These equations end up being:
SimpleAddition: 5+2=7.000
SimpleDivision: 10/2=5.0
MoreComplex: (((5^2)*6)-10)/6=23.33
word count: 145