</property>
</widget>
</item>
+ <item>
+ <widget class="QRadioButton" name="radioButtonDifference">
+ <property name="text">
+ <string>Difference A-B</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="radioButtonRelativeDiff">
+ <property name="text">
+ <string>Relative difference (A-B)/A</string>
+ </property>
+ </widget>
+ </item>
</layout>
</widget>
</item>
</widget>
</item>
<item>
- <widget class="QRadioButton" name="radioButtonLogV">
+ <widget class="QRadioButton" name="radioButtonLogAlone">
<property name="text">
<string>Log A(x) (don't use v)</string>
</property>
</widget>
</item>
<item>
- <widget class="QRadioButton" name="radioButtonExpV">
+ <widget class="QRadioButton" name="radioButtonExpAlone">
<property name="text">
<string>Exp A(x) (don't use v)</string>
</property>
</property>
</widget>
</item>
+ <item>
+ <widget class="QRadioButton" name="radioButtonDivideV">
+ <property name="text">
+ <string>Division A(x)/v</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="radioButtonNormalize">
+ <property name="text">
+ <string>A(x)/max(A(x)) (don't use v)</string>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QRadioButton" name="radioButtonLogV">
+ <property name="text">
+ <string>-Log (A(x)/v)</string>
+ </property>
+ </widget>
+ </item>
</layout>
</widget>
</item>
if (radioButtonMin->isChecked()) mArgsInfo.operation_arg = 4;
if (radioButtonAbsDiff->isChecked()) mArgsInfo.operation_arg = 5;
if (radioButtonSquaredDiff->isChecked()) mArgsInfo.operation_arg = 6;
+ if (radioButtonDifference->isChecked()) mArgsInfo.operation_arg = 7;
+ if (radioButtonRelativeDiff->isChecked()) mArgsInfo.operation_arg = 8;
} else {
mArgsInfo.input2_given = false;
mArgsInfo.scalar_given = true;
if (radioButtonMinV->isChecked()) mArgsInfo.operation_arg = 4;
if (radioButtonAbsDiffV->isChecked()) mArgsInfo.operation_arg = 5;
if (radioButtonSquaredDiffV->isChecked()) mArgsInfo.operation_arg = 6;
- if (radioButtonLogV->isChecked()) mArgsInfo.operation_arg = 7;
- if (radioButtonExpV->isChecked()) mArgsInfo.operation_arg = 8;
+ if (radioButtonLogAlone->isChecked()) mArgsInfo.operation_arg = 7;
+ if (radioButtonExpAlone->isChecked()) mArgsInfo.operation_arg = 8;
if (radioButtonSqrtV->isChecked()) mArgsInfo.operation_arg = 9;
+ if (radioButtonDivideV->isChecked()) mArgsInfo.operation_arg = 11;
+ if (radioButtonNormalize->isChecked()) mArgsInfo.operation_arg = 12;
+ if (radioButtonLogV->isChecked()) mArgsInfo.operation_arg = 13;
mArgsInfo.scalar_given = true;
mArgsInfo.scalar_arg = mValueSpinBox->value();
}