MMS-Loesung-2024-25/MMS24_25.h
2024-12-03 12:28:01 +01:00

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