Skip to content

Commit abc7fdd

Browse files
committed
Changed correction data interpolation to linear.
1 parent aa46a75 commit abc7fdd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Calibration.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ void __fastcall CCalibration::correct(std::vector <t_data_point> &points)
290290
if (m_inter_cal.empty()) // create interpolated calibration data .. this is only done the once when the number of points and/or frequency range changes
291291
{
292292
computeErrorTerms(m_calibration);
293-
// interpolateErrorTerms(m_calibration, points, true); // linear interpolation
294-
interpolateErrorTerms(m_calibration, points, false); // spline interpolation
293+
interpolateErrorTerms(m_calibration, points, true); // linear interpolation
294+
// interpolateErrorTerms(m_calibration, points, false); // spline interpolation
295295
}
296296

297297
if ((int)m_inter_cal.size() == size)

Unit1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ void __fastcall TForm1::FormCreate(TObject *Sender)
533533
String windows_ver = common.windowsVer;
534534
String local_name = common.localName;
535535

536-
common.title = Application->Title + " by OneOfEleven et al " + s + " (+OD12) ";
536+
common.title = Application->Title + " by OneOfEleven et al " + s + " (+OD13) ";
537537

538538
this->Caption = common.title;
539539
StatusBar2->Panels->Items[0]->Text = windows_ver + " " + local_name + " '" + String(common.decimalPoint()) + "'";

0 commit comments

Comments
 (0)