How can I plot circles of different diameters within a square?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need help to create code which will generate circles of different diameters within a square geometry. The circles cannot overlap. I am an amateur at using Matlab and any ideas will be greatly appreciated.
0 Kommentare
Akzeptierte Antwort
Kevin Claytor
am 17 Jul. 2012
This file may do what you want, or similar enough to it; http://www.mathworks.com/matlabcentral/fileexchange/33213-growbubbles-maximum-radius-packing
3 Kommentare
Kevin Claytor
am 17 Jul. 2012
This error often occurs when functions are used as scripts. You'll want to save the function as a .m file with the same name (growbubbles.m), then you call it from the command window / your scripts with;
ptrads = growbubbles(ptsIn)
That is, you don't need the 'function' keyword when calling functions from the command window / scripts. It is used to declare a .m file as a function rather than a script.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!