You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include "CvToFreq.h"
-
- void CvToFreq::setinput(float _input)
- {
- input = _input;
- }
- void CvToFreq::setbase(float _base)
- {
- base = _base;
- }
- float CvToFreq::getoutput()
- {
- float output = powf(2.0, input) * base;
- return output;
- }
|