How can i connect different points using straight line after plotting? is there any plotting tool?

1 次查看(过去 30 天)

回答(3 个)

Adam
Adam 2016-7-25
How did you plot your points? The plot or line functions will, by default join points with a line.

Image Analyst
Image Analyst 2016-7-25
Try this with your data
plot(x, y, 'b*-', 'LineWidth', 2, 'MarkerSize', 15);
grid on;
  2 个评论
Image Analyst
Image Analyst 2016-7-25
I don't know as I do all my interaction with MATLAB through programming rather than interactively. From your reply to Adam, it also sounds like you have a program, so what's the big deal with just adding a plot() call to your program?

请先登录,再进行评论。


Star Strider
Star Strider 2016-7-25
Are you plotting those in a loop? If you are, index the variables and then plot at the end of the loop:
x = 5:8;
for k1 = 1:length(x)
y(k1) = 16 - (x(k1)-7).^2;
end
figure(1)
plot(x, y, '-', x, y, '.')

类别

Help CenterFile Exchange 中查找有关 Genetic Algorithm 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by