lines - connecting all points between two subplots in matlab? -
this question has answer here:
- draw line between 2 subplots 2 answers
i want connect points in scatterplot in 1 subplot subplot. both scatterplots have been linked. points in same row between subplots joined lines. how join multiple lines between subplots?
well, matlab command line
draws line in current axes, not useful connecting points between 2 subplots. however, there command annotation
draws on figure. might use it, in case have transfomr coordinates of points coordinates on figure, might deal of work.
here example how annotation lines work:
annotation(gcf,'line',[1 0.553571428571429],... [0.1 0.891895015906681]);
Comments
Post a Comment