How can I draw a arrow
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can I plot/draw a vector(with first point and it's length and direction) I want it with it's head(be arrow not only a line) an arrow by its location and size and direction
0 Kommentare
Antworten (1)
Robert Cumming
am 9 Apr. 2014
2 Kommentare
Robert Cumming
am 10 Apr. 2014
x and y are the normalised co-ordinates of the start and end position:
f = figure;
ax = axes('parent', f);
annotation ( 'arrow', [0 1], [0.25 0.5] )
Siehe auch
Kategorien
Mehr zu Data Exploration 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!