Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
LinearCharacteristics.h
- Committer:
- altb
- Date:
- 2018-03-01
- Revision:
- 2:252a61a7e8f9
- Parent:
- 0:15be70d21d7c
- Child:
- 21:cef093edb441
File content as of revision 2:252a61a7e8f9:
class LinearCharacteristics{
public:
LinearCharacteristics(float k,float offset);
LinearCharacteristics(float k,float offset,float);
LinearCharacteristics(float k,float offset,float,float);
float operator()(float u){
return eval(u);
}
virtual ~LinearCharacteristics();
float eval(float);
private:
float k;
float offset;
float lower_limit;
float upper_limit;
};