Why is boundary showing me an empty array?
4 次查看(过去 30 天)
显示 更早的评论
With the following code Matlab ejects me k = [] empty, what could be the reason?
x = [0;0;0;0,;0,;0];
y = [0;6;7;8;9;10];
k = boundary(x,y);
x2 = x(k);
y2 = y(k);
figure
hold on
scatter(x2,y2)
3 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Scatter Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!