Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
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.

11 lines
172B

  1. // Auswertung
  2. float Polynomial::eval (float x)
  3. {
  4. float sum=0.0;
  5. // Hornerschema
  6. for (int i=maxIndex(); i>=0; i=i-1)
  7. sum = sum*x + operator[](i);
  8. return sum;
  9. }