Info

This question is closed. Reopen it to edit or answer.

Why do I get "Undefined function or variable 'var'."

1 view (last 30 days)
Nour BS
Nour BS on 14 Nov 2017
Closed: Stephen23 on 15 Nov 2017
Hi, My code is a for loop which runs a function tsp_ga.m n times. this function (tsp_ga) gives a result "minDist". So my objective is to store the n obtained results in a vector. And to do it I Wrote the following code:
for kk=1:5
k
tsp_ga
ss(kk)=minDist
end
But it gave the following error: " Undefined function or variable 'minDist'.
Error in (line 4) ss(kk)=minDist_ ".
PS.: you will find attached the function tsp_ga.
Thank you in advance.
  3 Comments
Nour BS
Nour BS on 14 Nov 2017
So as I understand I need to save the result "minDist" from the function to the workspace? If so, how can I do it?

Answers (0)

Community Treasure Hunt

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

Start Hunting!