Animating circle to increase and decrease in size over a period of time
Mostrar comentarios más antiguos
I would like to create a simple visualization whereby the circle (country) will increase/decrease in size(Base on the variables) with respect to time.
How can it be done on matlab with my current dataset ? I would want each circle to represent a country and the size of the circle will be determined by the value in that particular year. C1990 represents year 1990

Respuestas (2)
Image Analyst
el 22 de Abr. de 2014
0 votos
You can use rectangle() to draw a circle if you want. The radius can be the number in your table. Use "hold on" and then plot a circle for every country. Then turn hold off, call cla() to wipe the plot clean, then plot them all again for the next year. Pretty easy.
Tze Tian
el 22 de Abr. de 2014
0 votos
Categorías
Más información sobre Animation en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!