-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error using supergui (line 122) #48
Comments
I am also struggling with this and related errors. Basically the problem
is that starting (I think) with Matlab 2014, Mathworks changed
significantly how its graphics engine works. BCILab, however, is
unmaintained and didn't keep up with the changes. Unfortunately this is
true for a lot of toolboxes. Fortunately for EEGLab users, there is
someone around to take care of keeping that code up to date with
Mathworks. The work around (I think, please correct me if I am making a
mistake) is to use an older version (<2014) of Matlab.
I'd be interested to know how many people are using BCILab on a regular
basis and how they have been dealing with the fact that it is slowly
self-deprecating.
…On 4/3/2018 8:16 AM, Janinajj wrote:
Hi,
I am using MATLAB R2017a and BCILAB version 1.1-beta (the only version
I found) and when following the tutorial
https://www.youtube.com/watch?v=Sup2SaJyFQE I get stuck when choosing
the BCILAB paradigm.
The following error appears:
Error using supergui (line 122)
supergui error: argument 'fig' must be numeric
Error in inputgui (line 161)
[tmp tmp2 allobj] = supergui( 'fig', fig, 'minwidth', 200,
'geomhoriz', g.geometry, 'uilist', g.uilist, 'geomvert',
[g.geomvert(:)' 1 1] );
Error in arg_guidialog (line 188)
[outs,dummy,okpressed] = inputgui('geometry',geometry,
'uilist',uilist,'helpcom',['env_doc ' helptopic],
'title',dialogtitle,'geomvert',geomvert); %#ok
Error in gui_configapproach (line 38)
result =
arg_guidialog(calibrate_func,'params',approach.parameters,'title','BCILAB:
Configure approach','Invoke',false);
Error in gui_newapproach>gui_newapproach_OutputFcn (line 65)
[varargout{1:2}] = gui_configapproach(varargout{1},true);
Error in gui_mainfcn (line 264)
feval(gui_State.gui_OutputFcn, gui_hFigure, [], gui_Handles);
Error in gui_newapproach (line 28)
gui_mainfcn(gui_State, varargin{:});
Error while evaluating Menu Callback.
Any idea how to solve this issue?
Thanks
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#48>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADch7gi09QudrVyxCEqWI_mlKDsE_IFJks5tkxPbgaJpZM4TEggi>.
|
Haha! Actually, BCILAB is much more maintained than I had realized. You
need a newer version. You will have to clone the git repository
(https://github.com/sccn/BCILAB) and then switch to the devel branch. I
just did this and it is working much better.
…On 4/3/2018 8:16 AM, Janinajj wrote:
Hi,
I am using MATLAB R2017a and BCILAB version 1.1-beta (the only version
I found) and when following the tutorial
https://www.youtube.com/watch?v=Sup2SaJyFQE I get stuck when choosing
the BCILAB paradigm.
The following error appears:
Error using supergui (line 122)
supergui error: argument 'fig' must be numeric
Error in inputgui (line 161)
[tmp tmp2 allobj] = supergui( 'fig', fig, 'minwidth', 200,
'geomhoriz', g.geometry, 'uilist', g.uilist, 'geomvert',
[g.geomvert(:)' 1 1] );
Error in arg_guidialog (line 188)
[outs,dummy,okpressed] = inputgui('geometry',geometry,
'uilist',uilist,'helpcom',['env_doc ' helptopic],
'title',dialogtitle,'geomvert',geomvert); %#ok
Error in gui_configapproach (line 38)
result =
arg_guidialog(calibrate_func,'params',approach.parameters,'title','BCILAB:
Configure approach','Invoke',false);
Error in gui_newapproach>gui_newapproach_OutputFcn (line 65)
[varargout{1:2}] = gui_configapproach(varargout{1},true);
Error in gui_mainfcn (line 264)
feval(gui_State.gui_OutputFcn, gui_hFigure, [], gui_Handles);
Error in gui_newapproach (line 28)
gui_mainfcn(gui_State, varargin{:});
Error while evaluating Menu Callback.
Any idea how to solve this issue?
Thanks
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#48>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADch7gi09QudrVyxCEqWI_mlKDsE_IFJks5tkxPbgaJpZM4TEggi>.
|
Awesome!!! That seems to work much better, thank you! |
Still experiencing more issues though: WARNING: the data set did not contain matching target markers. Computation failed; error trace: Do you have any solutions to that? |
I believe you have to change the target markers in the Calibrate a model
dialog which pops up when you select train a model so that they
correspond to the markers in the data set. Doesn't Christian step
through this in the video?
…On 4/5/2018 5:43 AM, Janinajj wrote:
Still experiencing more issues though:
It can't find the target markers...
WARNING: the data set did not contain matching target markers.
WARNING: set_gettarget did not find any target information in this
data set. See help of set_gettarget and set_targetmarkers for how data
sets can be annotated with target information.
Computation failed; error trace:
Some windows are entirely outside the data dimensions (0): [40 45;45 50]
Do you have any solutions to that?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#48 (comment)>, or
mute the thread
<https://github.com/notifications/unsubscribe-auth/ADch7mEhO2GQaC3dHYYFK4fqdoCjv6sGks5tlZLqgaJpZM4TEggi>.
|
Yes, he does, but it won't work.. have read about others having the same issue. |
I have Matlab 2015b, I am running BCILab 1.5 devel and I had no problems
whatsoever in following along with Christian's demo tutorial. Are you
sure that the marker values you entered are free of typos? It should be:
{{'S101', 'S102'}, {'S201', 'S202'}}
…On 4/5/2018 12:51 PM, Janinajj wrote:
Yes, he does, but it won't work.. have read about others having the
same issue.
Or does it work for you? Also saw the suggestion to download an older
version of MATLAB.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#48 (comment)>, or
mute the thread
<https://github.com/notifications/unsubscribe-auth/ADch7ojIQb4OgHtc4ni1yTdc4vBiTTVvks5tlfdEgaJpZM4TEggi>.
|
Hi, I am new to MATLAB, BCILAB. I am on LUbuntu and using version R2018b version. while running "env_compile_bcilab", I am getting following error: Creating dependency list /usr/local/MATLAB/R2018b/bin/BCILAB-1.1/build/dependency_list.m Error in env_compile_bcilab (line 163) If anyone knows, how to resolve, or any help would be really appreciated. Thanks in advance !!! |
Hi,
I am using MATLAB R2017a and BCILAB version 1.1-beta (the only version I found) and when following the tutorial https://www.youtube.com/watch?v=Sup2SaJyFQE I get stuck when choosing the BCILAB paradigm.
The following error appears:
Error using supergui (line 122)
supergui error: argument 'fig' must be numeric
Error in inputgui (line 161)
[tmp tmp2 allobj] = supergui( 'fig', fig, 'minwidth', 200, 'geomhoriz', g.geometry, 'uilist', g.uilist, 'geomvert',
[g.geomvert(:)' 1 1] );
Error in arg_guidialog (line 188)
[outs,dummy,okpressed] = inputgui('geometry',geometry, 'uilist',uilist,'helpcom',['env_doc ' helptopic],
'title',dialogtitle,'geomvert',geomvert); %#ok
Error in gui_configapproach (line 38)
result = arg_guidialog(calibrate_func,'params',approach.parameters,'title','BCILAB: Configure approach','Invoke',false);
Error in gui_newapproach>gui_newapproach_OutputFcn (line 65)
[varargout{1:2}] = gui_configapproach(varargout{1},true);
Error in gui_mainfcn (line 264)
feval(gui_State.gui_OutputFcn, gui_hFigure, [], gui_Handles);
Error in gui_newapproach (line 28)
gui_mainfcn(gui_State, varargin{:});
Error while evaluating Menu Callback.
Any idea how to solve this issue?
Thanks
The text was updated successfully, but these errors were encountered: