How to add a line to the scatter?

30 ビュー (過去 30 日間)
Ilkin Abdullayev
Ilkin Abdullayev 2020 年 4 月 30 日
コメント済み: Ameer Hamza 2020 年 4 月 30 日
Hello everybody,
I have a problem to find a code which plot the line on my scatter plot. I have upload a pictures of scatter and the example line which I have drawn manualy.
If someone can help, I would be glad.
Thank you
  6 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 4 月 30 日
yes, You can attach that as a .mat file.
Ilkin Abdullayev
Ilkin Abdullayev 2020 年 4 月 30 日
Here is the some part of the data.
x axis is distance, y is load. The result will not be the same as in the pictures that I upload because it was a data for different date.

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

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 30 日
The data you shared is distributed vertically, so I estimated a vertical line using lsqcurvefit. You can use a similar method if you know an approximate equation that fits your model.
load('mathwork.mat');
x = @(p, y) p(1)*y+p(2);
p = lsqcurvefit(x, rand(1,2), data.Load, data.Distance);
scatter(data.Distance, data.Load)
hold on;
plot(x(p, data.Load), data.Load, 'LineWidth', 2);
  4 件のコメント
Ilkin Abdullayev
Ilkin Abdullayev 2020 年 4 月 30 日
with curve fitting I gained the result. Thank you very much. I really appreciate.
Ameer Hamza
Ameer Hamza 2020 年 4 月 30 日
I am glad to be of help.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by