I am trying to autogenerate geometry in Livelink with MATLAB using for loops. Specifically, I am trying to make a series of concentric spheres. However, I am having trouble due to the fact that each time I create a new object it needs a new string for a name for the variable. It then gives me an error whenever I try to autogenerate the names with the for loops. For example, for n=1:10 sq+n = geometry.feature.create('sq'+n,'Square'); end
Is there a good online resource regarding this?