Hi,
I am a newbie in matlab. I am trying to initialize an empty matrix with certain dimensions.
X = 1:5;
Y = 1:1;
[X, Y] = ndgrid(x, y);
tabuList = [X,Y];
for i = 1:5
tabuList(i,1) = 'EMPTY';
end
However, I get the following error
??? Undefined function or...