15 lines
535 B
C
15 lines
535 B
C
//
|
|
// Created by minhd on 03.12.2024.
|
|
//
|
|
|
|
#ifndef MMS_LOESUNG_2024_25_MMS24_25_H
|
|
#define MMS_LOESUNG_2024_25_MMS24_25_H
|
|
|
|
double interpolateLine(double dX1,double dY1,double dX2, double dY2, double dXq);
|
|
void rescaleDoubleArray(double *pdIn, int iLen, int iMin, double dFactor, double *pdOut);
|
|
double *generateSineValues(int iNumValues, int iNumSamplesPerPeriod, double dAmp);
|
|
void writeDoubleArray(double *pdOut, int iLen, char *pcOutName);
|
|
int readDoubleArray(char *pcInName, double **ppdIn);
|
|
|
|
#endif //MMS_LOESUNG_2024_25_MMS24_25_H
|