Arrow between two subplots
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a very simple question. I have a scope (in simulink) with three different subplots inside. I want to add some arrows to it, so I used the "print to figure" option. Once I have the figure, I added the arrow using the insert-> arrow, but I cannot extend it over more than one subplot. I tried to used the annotation command in the workspace but it doesn't draw anything:
annotation('line',[0.03050,1],[0.1645,0.5],'color','r','LineWidt',1)
Any idea what am I doing wrong? Thanks in advance for your suggestions.
0 Kommentare
Antworten (2)
per isakson
am 26 Mai 2018
Bearbeitet: per isakson
am 26 Mai 2018
Clipping — Clipping of object to axes limits
to off. Doc says:
Clipping of the object to the axes limits, specified as one of
these values:
'on' — Do not display parts of the object that are outside the
axes limits.
'off' — Display the entire object, even if parts of it appear
outside the axes limits. ...
2 Kommentare
per isakson
am 30 Mai 2018
"I have a very simple question." It appears to be simple, but I fail. Caveat: I'm not up to date with the new graphic stuff.
Simple experiment on R2017b:
subplot(2,1,1)
subplot(2,1,2)
arh=annotation('arrow', [0.1,0.9 ],[0.1,0.9] )
arh.LineWidth = 5;
arh.Color = [1,0,0];

>> arrowParent = arh.Parent ;
>> arrowParent.Type
ans =
'annotationpane'
>> arrowParent.Parent
ans =
Figure (1) with properties:
I had little success with your figure:
- missing tileGrid throw an error when I tried to open the figure. I added an empty function, which helped to open the figure.
function tileGrid( varargin )
end
Hasan Alrajhi
am 4 Aug. 2019
annotation('arrow',[0.463690476190475 0.5703125],...
[0.518164960688327 0.922118380062305],'Color',[1 0 0],'LineWidth',5)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Subplots 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!