Problem in GUI interface

1 view (last 30 days)
brahmi ibtissem
brahmi ibtissem on 25 Mar 2018
Answered: Walter Roberson on 27 Mar 2018
Hi, please when i run my GUI interface, I have this error:
Error using repmat
Replication factors must be a row vector of integers or integer scalars.
Error in drawColormap (line 36)
coordX_Matrix = repmat(coordX_Matrix_t,y_samples,1);
Error in simul1>pushbutton100_Callback (line 416)
drawColormap(handles);
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in simul1 (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)simul1('pushbutton100_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback
the code of y_samples is:
coordX_Matrix_t = ones(1,x_samples);
ind = find(coordX_Matrix_t)-1;
coordX_Matrix_t = ((max_x * 2.0) / x_samples)*ind;
coordX_Matrix = repmat(coordX_Matrix_t,y_samples,1);
%coordX_Matrix = repmat(coordX_Matrix_t,1,y_samples);
coordY_Matrix_t = ones(fix(y_samples),1);
ind2 = find(coordY_Matrix_t)-1;
coordY_Matrix_t = ((max_y * 2.0) / y_samples)*ind2;
coordY_Matrix = repmat(coordY_Matrix_t,1,x_samples);
coordVectors = get(handles.figure1, 'UserData');
it=coordVectors.it;
[EDITED, Jan, Duplicate posts joined, code formatted]
  3 Comments
Jan
Jan on 26 Mar 2018
@brahmi ibtissem: Please post one thread per problem only. Use the "{} Code" button to format your code. Thanks.
brahmi ibtissem
brahmi ibtissem on 27 Mar 2018
Hi, The problem appear in my interface when i click to Run simulation button. The color of axes changes to blue. can you help me how i solve this problem. I need that the color of axe remains colorless and the blue color disappear. This is the code of the gui interface:simul1.m The code of the drawColormap in the <file:drawColormap.m>

Sign in to comment.

Answers (2)

brahmi ibtissem
brahmi ibtissem on 26 Mar 2018
Thanks. BUt i stil have the same error: this is the syntax: coordX_Matrix_t = ones(1,x_samples); ind = find(coordX_Matrix_t)-1; coordX_Matrix_t = ((max_x * 2.0) / x_samples)*ind; coordX_Matrix = repmat(coordX_Matrix_t,y_samples,1); %coordX_Matrix = repmat(coordX_Matrix_t,1,y_samples); coordY_Matrix_t = ones(fix(y_samples),1); ind2 = find(coordY_Matrix_t)-1; coordY_Matrix_t = ((max_y * 2.0) / y_samples)*ind2; coordY_Matrix = repmat(coordY_Matrix_t,1,x_samples);
coordVectors = get(handles.figure1, 'UserData'); it=coordVectors.it; The same error appear when i run my interface.
  2 Comments
Rik
Rik on 26 Mar 2018
Read the two links I posted. Also, you posted this as an answer instead of a comment. You should delete this answer and post it as a comment, after having read the two links I provided.
Rik
Rik on 26 Mar 2018
I didn't mean you should post a new question, I meant you should post this text as a comment and correctly format it. (use the {}Code button)

Sign in to comment.


Walter Roberson
Walter Roberson on 27 Mar 2018
double(uint16(sqrt(3)*125))
Is 217. You multiply this by 2 and divide by 4, which gives you a non integer that cannot be used as a replication factor.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!