Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem running my main function in MATLAB (the main program and calls other functions). Trying to run it gives me the error "??? Undefined function or variable 'max_x_address'". But, as you can see below, it has been declared as a global. This is really bothering me, so any help would be appreciated. (Do I have to modify my pathdef.m file? That is what the MATLAB troubleshooting says, but I followed some of the steps and it didn't help.)
The following is a skeleton of the program:

function Adaptive_Information
global HUBS, max_x_address, max_y_address;
.
.
max_x_address = 10;
.
.
end
share|improve this question

1 Answer

You have to declare it global in every context that will use it. That is, add:

global max_x_address

To the beginning of each function which will use max_x_address, plus the base workspace (if needed).

share|improve this answer
Thanks, although I was able to fix it. The solution turned out to be to avoid declaring multiple variables on the same line. (Strange behavior from MATLAB) – Joebevo Apr 2 '12 at 6:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.