plot Dynamic horizontal line

2 Ansichten (letzte 30 Tage)
Martin Tambour
Martin Tambour am 14 Jul. 2020
Kommentiert: Martin Tambour am 15 Jul. 2020
Hello,
I need to visualize a watertank in Matlab. I have the height of the water in a 1x1000 array and it needs to change over the time of 1:1000.
Also I need a steady yline that doesn't change.
Is there a build in funktion? can I use the addpoints funktion?
  5 Kommentare
madhan ravi
madhan ravi am 14 Jul. 2020
Have you looked into AppDesigner?
Martin Tambour
Martin Tambour am 14 Jul. 2020
not yet, thank you!

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Steven Lord
Steven Lord am 14 Jul. 2020
You want something like this?
% Sample data
x = 0:360;
y = sind(x);
% Create the sine curve with one marker
h = plot(x, y, 'Marker', 'o', 'MarkerIndices', 1);
% Create the horizontal line
L = yline(y(1));
for whichPoint = 2:length(y)
% Change the height of the horizontal line
L.Value = y(whichPoint);
% Change which point in the sine curve has the marker
h.MarkerIndices = whichPoint;
% Give MATLAB a chance to redraw the screen
drawnow expose
end
  1 Kommentar
Martin Tambour
Martin Tambour am 15 Jul. 2020
Thats verry helpful!!
Is it possible to color the area under the horizontal line?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by