LibreVNA/Software/PC_Application/LibreVNA-Test/parametertests.h
Jan Käberich 0205ab494d Improve de-embedding
- Add Z parameters with general conversion from and to S parameters
- Implement impedance renormalization over general Z parameters
- Fix crash after taking de-embedding measurement
- Fix various small bugs with new parameter implementation
2025-02-21 12:37:39 +01:00

22 lines
314 B
C++

#ifndef PARAMETERTESTS_H
#define PARAMETERTESTS_H
#include <QtTest>
class ParameterTests : public QObject
{
Q_OBJECT
public:
ParameterTests();
private slots:
void S2ABCD();
void ABCD2S();
void S2Z_1P();
void S2Z_2P();
void Z2S_1P();
void Z2S_2P();
};
#endif // PARAMETERTESTS_H