??? Undefined function or variable 'k'.
3 ビュー (過去 30 日間)
古いコメントを表示
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*');
0 件のコメント
回答 (1 件)
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Bounding Regions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!