フィルターのクリア

Plot straight line between points

60 ビュー (過去 30 日間)
Christo van Rensburg
Christo van Rensburg 2020 年 5 月 2 日
Hi everybody,
I'm trying to plot something like this, but just for a number of datapoints.
But keep on getting something like this instead:
I've tried using 'line' but doesn't work and also 'bo-' in the plot command. My code at the moment is:
xVal = [Ax, Bx, Cx];
yVal = [Ay, By, Cy];
plot(xVal, yVal,'bo-'), grid on, hold on
line(xVal, yVal)
Any help is appreciated thanks!

採用された回答

Olawale Ikuyajolu
Olawale Ikuyajolu 2020 年 5 月 2 日
編集済み: Olawale Ikuyajolu 2020 年 5 月 2 日
Click here for the solution to similar problemClick here
  1 件のコメント
Christo van Rensburg
Christo van Rensburg 2020 年 5 月 2 日
I managed to solve it using the following code:
for j = 1:13
xVal = [Bx(j), Ax(j)];
yVal = [By(j), Ay(j)];
plot(xVal, yVal,'bo-'), grid on, hold on
xlim([-0.4 0.4]), ylim([-0.4 0.5])
end
This worked for two points and just created another for-loop for the other two points.
Thanks for the input guys!

サインインしてコメントする。

その他の回答 (1 件)

darova
darova 2020 年 5 月 2 日
Try this solution
  2 件のコメント
Christo van Rensburg
Christo van Rensburg 2020 年 5 月 2 日
I tried something like this, but it's not quite what I'm after.
Christo van Rensburg
Christo van Rensburg 2020 年 5 月 2 日
But thanks for your response, see my comment above.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by