Skip to content

Commit 7d7abaa

Browse files
committed
Minor change in example.
1 parent 4b2a8ce commit 7d7abaa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

toolbox/examples/demo_sdi.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
% Get signal objects and expand to convert multidimensional signals to scalar channels
2626
eegSig = runObj.getSignalsByName("biosignal.eeg");
2727
eegSig.expand;
28-
conSig = runObj.getSignalsByName("con");
29-
conSig.expand;
28+
spfSig = runObj.getSignalsByName("spf");
29+
spfSig.expand;
3030

3131
% Plot signals in subplots
3232
arrayfun(@(sigObj) plotOnSubPlot(sigObj,1,1,true), eegSig.Children(1:6));
33-
plotOnSubPlot(conSig.Children(1),2,1,true);
33+
plotOnSubPlot(spfSig.Children(1),2,1,true);

0 commit comments

Comments
 (0)