Fertig

Dependencies:   mbed

Fork of RT2_P3_students by RT2_P3_students

Committer:
altb
Date:
Tue Apr 17 09:06:47 2018 +0000
Revision:
7:72982ede2ff6
Parent:
6:2cc56521aa16
Child:
9:dc0eb7dd0d92
.

Who changed what in which revision?

UserRevisionLine numberNew 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 7:72982ede2ff6 5 LinearCharacteristics::LinearCharacteristics(float gain,float offset){ // standard lin characteristics
altb 7:72982ede2ff6 6 this->gain = gain;
altb 7:72982ede2ff6 7 this->offset = offset;
altb 3:769ce5f06d3e 8 }
altb 3:769ce5f06d3e 9
altb 3:769ce5f06d3e 10 LinearCharacteristics::~LinearCharacteristics() {}
altb 3:769ce5f06d3e 11
altb 7:72982ede2ff6 12
altb 7:72982ede2ff6 13 float LinearCharacteristics::evaluate(float x)
altb 7:72982ede2ff6 14 {
altb 7:72982ede2ff6 15 return this->gain*(x - this->offset);
altb 7:72982ede2ff6 16 }