How to plot DiscreteGeometry objects
3 次查看(过去 30 天)
显示 更早的评论
In the workspace attached I have a table (opFrame_table), one variable of which is XYZ, each row of this variable representing XYZ data for the centre of the top face of a cylinder.
I have created DiscreteGeometry objects for each row (and therefore cylinder) using multicylinder, and am attempting to plot them using pdegplot. Here is the code:
%% Generate cylinders from markers
R=150;
H=NaN(height(opFrame_table),1);
model=cell(height(opFrame_table),1);
for i=1:height(opFrame_table)
H(i)=opFrame_table.XYZ(i,3);
gm=multicylinder(R,H(i));
model{i}=createpde;
model{i}.Geometry=gm;
pdegplot(model{i})
hold on
end
The result is the figure below (with the .fig file attached):
As you can see only one of the objects is plotted. The position of the object within the coordinate system is also somewhat unrelated to the original XYZ variable data. Each edge of the cylinder is composed of a series of points with X, Y and Z coordinates, however, only the Z data is the same as the original XYZ variable data. Three questions therefore:
- How are you able to plot multiple cylinders in the same plot?
- How can you access the X, Y and Z coordinates of the edge points of the cylinders?
- How can I change the position of the cylinders in the plot?
0 个评论
回答(1 个)
Ravi Kumar
2020-1-5
Looks like you are overwriting the plot in a loop. If you want to plot multiple figures then you insert: figure command before pdegplot:
...
figure
pdegplot(model{i})
...
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Geometry and Mesh 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!