Translation of a plot line

12 次查看(过去 30 天)
Considering an existing figure, would it be possible to vertically translate one of the lines of the plot by a certain amount?

采纳的回答

Walter Roberson
Walter Roberson 2021-4-20
The easiest way is to find the line handle, extract the YData, add the shift to it, and store the result back in the YData property.
  2 个评论
HWIK
HWIK 2021-4-20
I'll have a look into that, thanks!
Walter Roberson
Walter Roberson 2021-4-20
plot(rand(1,50));
h = findobj(gcf, 'type', 'line');
h.YData = h.YData + 5;
Notice that rand() is strictly in the range 0 to 1, but the plot output is in the range 5 to 6, because the line has been moved up by 5

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Objects 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by