MATLAB Matlab fails to access a list of variables

AI Thread Summary
The discussion centers on a MATLAB coding issue involving the use of the eval function to access a list of variables and compare them to a larger matrix A. The user is encountering an error message stating 'Undefined function or variable 'AAAN'' when running the code from an m file, despite the variable being defined in the workspace. The user shares their code, which attempts to store each variable in a temporary matrix B and perform calculations to store results in matrix Z. There is a suggestion for debugging the code to confirm that the expected data is being received within the function. The importance of running debugging in batch mode is emphasized, and a request is made to demonstrate the data structure inside the function without using eval. The discussion highlights a preference for avoiding cell arrays due to the time-consuming nature of transferring data, seeking instead for tweaks to make the current approach work.
MartinV
Messages
68
Reaction score
0
So I have a list of variables, defined in my workspace, and I'm trying to access them each in turn to compare them to a larger matrix A. The eval function calls each variable in turn, stores it under temporary matrix B, then compares it to matrix A, does the necessary calculation, and stores it into matrix Z.

Eval, always the capricious function, works if I try to do it manually but fails as I put this into m file and run it. The warning displayed is 'Undefined function or variable 'AAAN'.' even though that variable is there.

This is my code:

function Z = final(A,list)

B = [];
Z = [];
K = log10(exp(1));

for k = 1:length(list)
eval(strcat('B = ',list{k},';'));
for j = 2:length(B)
for i = 2:length(A)
if A(i,1) == B(j,1) && A(i,2) == B(j,2)
Z = [Z; [A(i,1) A(i,2) K/(A(i,3)-B(1,3))]];
end
end
end
end

end

Now I know most people will advise me to just use cell arrays but since dumping all those matrices into a fresh cell array will take me forever, I'm asking if there is a tweak or two to perform in order to get this to work.

Thanks.
Martin
 
Physics news on Phys.org
MartinV:

Say, I don't use MATLAB but would like to see some debugging, i.e., a confirmation that you are actually getting inside your function the data that you think you are getting.

Again, because you say this is an interactive vs. batch thing...you should do all this 'debugging' in batch mode too (or *.m, style or whatever)

can you explicitly show a small sample?

Also, can you forget about the eval for a moment and just show what the data looks like INSIDE the function?
 

Similar threads

Replies
2
Views
3K
Replies
4
Views
1K
Replies
7
Views
2K
Replies
1
Views
2K
Replies
2
Views
2K
Replies
3
Views
1K
Back
Top