File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -136,8 +136,8 @@ void __fastcall CCalibration::computeErrorTerms(t_calibration &calibration)
136136 const complexd throughCal = calibration.point [i].throughCal ;
137137 try
138138 {
139- // e10e32 = ((throughCal / gthru) - e30) * (complexf (1, 0) - (e11 * e11));
140- e10e32 = ((throughCal / gthru) - e30 ); // this one drops the load calibration from S21 but produces flat through cable calibrations
139+ e10e32 = ((throughCal / gthru) - e30 ) * (complexd (1 , 0 ) - (e11 * e11 ));
140+ // e10e32 = ((throughCal / gthru) - e30); // this one drops the load calibration from S21 but produces flat through cable calibrations
141141
142142 // inverse to let allow live corrections use faster multiply instead of slower divide
143143 e10e32 = complexd (1 , 0 ) / e10e32;
Original file line number Diff line number Diff 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 + " (+OD15 ) " ;
536+ common.title = Application->Title + " by OneOfEleven et al " + s + " (+OD16 ) " ;
537537
538538 this ->Caption = common.title ;
539539 StatusBar2->Panels ->Items [0 ]->Text = windows_ver + " " + local_name + " '" + String (common.decimalPoint ()) + " '" ;
You can’t perform that action at this time.
0 commit comments