I'm studying the evolution of social networks and now i'm testing my algorithm on a small dataset using matlab. I'd like to add visualization feature. Simply, i'd like to view how my network grows or shrinks in small size. May I have this without making available the adjacency matrix of graph. e.g. my network in different timestamps is: t1: (1,2) (3,4) // there's link bw node 1 &2, also another link between node 3&4 t2: (1,2) (2,3) (3,4) t3: (1,2) (2,3) (3,4) (5,6)
May I have simple graphical interface using built-in function without having to integrate different packages available e.g. complex network package tailored for matlab. since most of them require adjacency matrix and if I have to provide this matrix just for visualization purpose (not necessary for my algorithm). Thanks in advance for any guidance