How to declare Universal variable in GUIDE?
조회 수: 2 (최근 30일)
이전 댓글 표시
I'm creating a GUIDE app that is supposed to load data and be able to plot 8 different regressions based off the data and display the plot in the GUI. The data is loaded by entering the filename into an editable text box, and clicking a button will read the data and put it into a matrix (using dlmread function). I'm not having trouble with this part. I then assign the x and y values to separate variables. Next, for example, clicking the linear regression function should plot the X vs Y. However, I can't get it to work because the x and y data variables are in the load button callback. In other words, I don't know how to use a variable created in one callback in another callback. Is there a way to make a global variable?
댓글 수: 1
Stephen23
2018년 4월 16일
편집: Stephen23
2018년 4월 16일
"Is there a way to make a global variable?"
Yes, but using global variables is a bad way to write code. Avoid using globals:
It is simple and much more reliable to use the standard methods for passing data between callbcaks, such as guidata, nested functions, etc.:
Search this forum for guidata for many examples of how to do this.
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!