From 3e0f3df48c31c0eb68366ba82e5b652800314dfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Fri, 21 Feb 2025 15:06:20 +0100 Subject: [PATCH] adjust Z0 when de-embedding traces --- Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp b/Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp index c0c30fb..df0b237 100644 --- a/Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp +++ b/Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp @@ -335,7 +335,7 @@ void Trace::fillFromDatapoints(std::map traceSet, const std::v if(!deembedded) { traceSet[measurement]->addData(td, DataType::Frequency); } else { - traceSet[measurement]->addDeembeddingData(td); + traceSet[measurement]->addDeembeddingData(td, d.Z0); } } }