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

#ifndef FUNKTION_H
#define FUNKTION_H
float getValue(char c);
double trapezFlaeche(double a,double b,double h);
double marktanteil(double gesamtumsatz,double unternehmensumsatz);
double angebotserfolg(double angeboteneMenge,double verkaufteMenge);
double Anlagenabnutzungsgrad(double anfangsbuchwert,double restbuchwert);
double Anlagenintensitaet(double gesamtkapital,double anlagevermoegen);
double Anlagenproduktivitaet(double anlagevermoegen, double umsatz);
double Arbeitsproduktivitaet(double arbeitszeit, double produktivitaet);
double Kalkulatorische_Zinsen(double kapital, double zinssatz, double zeitraum);
double Kritische_Menge(double fixkosten, double variablenkosten,double verkaufspreis);
double Effektivverzinsung(double normalzinssatz,double zahlungsintervall);
double Cashflow_zu_Gesamtkapital(double netto_kassenfluss, double gesamtkapital);
double Dynamische_Amortisationszeit(double investition, double jaehrlicher_Cashflow);
double Finanzierungsregeln(double durchschnittliche_verzinsung_vermoegenswerte,double durchschnittliche_kosten_kapitalbeschaffung);
double eigenkapital_Rentabilitaeten(double umsatz,double eigenkapital);
double gesamtkapital_Rentabilitaeten(double umsatz,double gesamtkapital);
double Zeitlohn(double lohnsatz,double arbeitszeit);
double Akkortrichtsatz(double stueckkosten,double akkordzuschlag);
double Stueckzeitakkort(double stueckkosten,double akkordzuschlag,double arbeitszeit,double menge);
double erloesfunktion(double p,double q);
double grenzGewinn(double p,double q,double tc);
double GewinnMaximum(double p,double q,double tc,double tr);
float Vshift(float x1,float s1);
double Vlength(float x1, float x2, float x3);
float Vadd(float x1, float z1);
float Vaddx2(float x2, float z2);
float Vaddx3(float x3, float z3);
float Vsubstract(float x1, float z1);
float Vsubstract2(float x2, float z2);
#endif