??? Undefined function or variable 'k'.

3 次查看(过去 30 天)
ali hadjer
ali hadjer 2015-11-7
i want to plot the convex hull of a random point and i have this msg:
my code is :
plot(x(k),y(k),'r-',x,y,'b*');
net = [1:n;rand([1,n])*x;rand([1,n])*y];
net1 = net;
hold on;
plot(net(2,:),net(3,:),'bo','MarkerSize',5,'MarkerFaceColor','b');
yy=net(3,:);
xx=net(2,:);
K= convhull(xx,yy);
plot(x(k),y(k),'r-',x,y,'b*');

回答(1 个)

Geoff Hayes
Geoff Hayes 2015-11-8
ali - your above code sample is incomplete. As the error message is telling you, the variable k is undefined. And from your code, this makes sense as the first line is
plot(x(k),y(k),'r-',x,y,'b*');
which relies on k (and x and y). Given that your code is similar to an example from convhull, it could be that you need to remove the first line and then initialize the output from convhull as
k = convhull(xx,yy);
using a lower case k instead of the upper case K. This assumes that you have already initialized n, x, and y.
And..always step through the code using the MATLAB debugger. It will become much more clear where the error is and what perhaps can be done to rectify it.

类别

Help CenterFile Exchange 中查找有关 Bounding Regions 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by