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.

34 lines
1.8 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. #ifndef FUNKTION_H
  2. #define FUNKTION_H
  3. float getValue(char c);
  4. double trapezFlaeche(double a,double b,double h);
  5. double marktanteil(double gesamtumsatz,double unternehmensumsatz);
  6. double angebotserfolg(double angeboteneMenge,double verkaufteMenge);
  7. double Anlagenabnutzungsgrad(double anfangsbuchwert,double restbuchwert);
  8. double Anlagenintensitaet(double gesamtkapital,double anlagevermoegen);
  9. double Anlagenproduktivitaet(double anlagevermoegen, double umsatz);
  10. double Arbeitsproduktivitaet(double arbeitszeit, double produktivitaet);
  11. double Kalkulatorische_Zinsen(double kapital, double zinssatz, double zeitraum);
  12. double Kritische_Menge(double fixkosten, double variablenkosten,double verkaufspreis);
  13. double Effektivverzinsung(double normalzinssatz,double zahlungsintervall);
  14. double Cashflow_zu_Gesamtkapital(double netto_kassenfluss, double gesamtkapital);
  15. double Dynamische_Amortisationszeit(double investition, double jaehrlicher_Cashflow);
  16. double Finanzierungsregeln(double durchschnittliche_verzinsung_vermoegenswerte,double durchschnittliche_kosten_kapitalbeschaffung);
  17. double eigenkapital_Rentabilitaeten(double umsatz,double eigenkapital);
  18. double gesamtkapital_Rentabilitaeten(double umsatz,double gesamtkapital);
  19. double Zeitlohn(double lohnsatz,double arbeitszeit);
  20. double Akkortrichtsatz(double stueckkosten,double akkordzuschlag);
  21. double Stueckzeitakkort(double stueckkosten,double akkordzuschlag,double arbeitszeit,double menge);
  22. double erloesfunktion(double p,double q);
  23. double grenzGewinn(double p,double q,double tc);
  24. double GewinnMaximum(double p,double q,double tc,double tr);
  25. float Vshift(float x1,float s1);
  26. double Vlength(float x1, float x2, float x3);
  27. float Vadd(float x1, float z1);
  28. float Vaddx2(float x2, float z2);
  29. float Vaddx3(float x3, float z3);
  30. float Vsubstract(float x1, float z1);
  31. float Vsubstract2(float x2, float z2);
  32. #endif