lines - connecting all points between two subplots in matlab? -


this question has answer here:

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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -