Why a code works differently in a command window and in a GUIDE?

조회 수: 3 (최근 30일)
Alexander
Alexander 2013년 6월 26일
Hi!
I'm working with GUIDE and I have this error
Index exceeds matrix dimensions.
Error in ==> RAMAS>carga_cable_Callback at 211
r=r1.*(s./(1000.*VB(jj).*VB(jj)))
I get variables of two uitable that are in different GUIDE, s and VB are in a GUIDE and r1, VB and jj in another GUIDE. Besides I can export all variables to workspace, but when a I execute code from GUIDE occurs error. When I write the operation in command window, I have the result that I need.
I do not understand what happens, since in a m.file this operation should be written as (without a point before the first item):
s=10000
jj=[3;4]
r1=[0.003982; 0.01542]
x1=[0.008006; 0.0173]
VB=[138 13.8 13.8 13.8 4.16]
r=r1*(s./(1000.*VB(jj).*VB(jj)))
  댓글 수: 2
Jan
Jan 2013년 6월 26일
편집: Jan 2013년 6월 26일
GUIDE is the tool to create GUIs, so I assume you mean "different GUIs".
What does this mean: "Without a point before the first item"? Which item do you mean and what is a "point"?
What is the size of VB([3;4])? Do you try to multiply two [2x1] vectors with each other? This would create another error message.
Alexander
Alexander 2013년 6월 27일
편집: Alexander 2013년 6월 27일
Sorry! I had a confusion between GUIDE and GUIs
What I mean is that if you look at the code that is on the top that is part of my gui, you will notice that there is a point after the variable r1 and is not in the code at the bottom as this code is not made in a gui.
It's strange because the code should work in both cases, so one is not done in gui. jj just equals 3, that information is incorrect.

댓글을 달려면 로그인하십시오.

채택된 답변

Jan
Jan 2013년 6월 26일
편집: Jan 2013년 6월 26일
  1. When I execute code from GUIDE occurs error
  2. When I write the operation in command window, I have the result that I need.
This unequivocally means, that either the code called from your GUI differs from the code typed into the command window, or the data differ. Due to the omnipresence of typos, I'm convinced, that such a problem causes the troubles. Please check the code again. Perhaps you've edited the code but did not save it before running?
  댓글 수: 4
Alexander
Alexander 2013년 6월 28일
Learned lesson between GUIDE and GUIs, I did case your recommendation, clearly guidata is the correct option to store and save data.
Thank you very much for you help!
Jan
Jan 2013년 6월 30일
@Alexander: You are welcome. Of course you can imagine that I did not speak about the "omnipresence of typos" without proving this in my own code exhaustively before ;-)

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2013년 6월 26일
Set a breakpoint on the "r=" line and see what jj is. Evidently jj is greater than 5. This link will help you: http://blogs.mathworks.com/videos/2012/07/03/debugging-in-matlab/

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by