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
Fork of RT2_P3_students_G4 by
LinearCharacteristics.cpp@7:01a7363583b2, 2018-04-22 (annotated)
- Committer:
- altb
- Date:
- Sun Apr 22 19:54:59 2018 +0000
- Revision:
- 7:01a7363583b2
- Parent:
- 5:72982ede2ff6
- Child:
- 10:85840c065e00
P3_2
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| altb | 0:78ca29b4c49e | 1 | #include "LinearCharacteristics.h" |
| altb | 0:78ca29b4c49e | 2 | |
| altb | 0:78ca29b4c49e | 3 | using namespace std; |
| altb | 0:78ca29b4c49e | 4 | |
| altb | 5:72982ede2ff6 | 5 | LinearCharacteristics::LinearCharacteristics(float gain,float offset){ // standard lin characteristics |
| altb | 5:72982ede2ff6 | 6 | this->gain = gain; |
| altb | 5:72982ede2ff6 | 7 | this->offset = offset; |
| altb | 2:769ce5f06d3e | 8 | } |
| altb | 2:769ce5f06d3e | 9 | |
| altb | 7:01a7363583b2 | 10 | LinearCharacteristics::LinearCharacteristics(float xmin,float xmax, float ymin, float ymax){ // standard lin characteristics |
| altb | 7:01a7363583b2 | 11 | this->gain = (ymax - ymin)/(xmax - xmin); |
| altb | 7:01a7363583b2 | 12 | this->offset = xmax - ymax/this->gain; |
| altb | 7:01a7363583b2 | 13 | } |
| altb | 7:01a7363583b2 | 14 | |
| altb | 2:769ce5f06d3e | 15 | LinearCharacteristics::~LinearCharacteristics() {} |
| altb | 2:769ce5f06d3e | 16 | |
| altb | 5:72982ede2ff6 | 17 | |
| altb | 5:72982ede2ff6 | 18 | float LinearCharacteristics::evaluate(float x) |
| altb | 5:72982ede2ff6 | 19 | { |
| altb | 5:72982ede2ff6 | 20 | return this->gain*(x - this->offset); |
| altb | 5:72982ede2ff6 | 21 | } |
