Skip to content

Commit 2db41f1

Browse files
[NET-203] Network Test selection for figures fix (#51)
* fix some silly mistakes in plot selection * Exported mlapp files --------- Co-authored-by: Github Action <action@github.com>
1 parent f50f93a commit 2db41f1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

NLAResult.mlapp

-8 Bytes
Binary file not shown.

NLAResult_exported.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,13 +491,13 @@ function DisplaySelectedButtonPushed(app, event)
491491
function PValModeDropDownValueChanged(app, event)
492492
import nla.* % required due to matlab package system quirks
493493
value = app.NetlevelplottingDropDown.Value;
494-
if strcmp(value, 'linear')
494+
if strcmp(value, 'p-value linear')
495495
% Plot p-values on linear scale
496496
app.net_input_struct.prob_plot_method = gfx.ProbPlotMethod.DEFAULT;
497497
elseif strcmp(value, 'p-value log')
498498
% Plot p-values on logarithmic scale
499499
app.net_input_struct.prob_plot_method = gfx.ProbPlotMethod.LOG;
500-
elseif strcmp(value, 'p-value -log')
500+
elseif strcmp(value, 'p-value -log10')
501501
% Plot p-values on negative logarithmic scale
502502
app.net_input_struct.prob_plot_method = gfx.ProbPlotMethod.NEG_LOG_10;
503503
else

0 commit comments

Comments
 (0)