How to plot DiscreteGeometry objects
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Ravi Kumar
le 5 Jan 2020
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})
...
1 commentaire
Voir également
Catégories
En savoir plus sur Geometry and Mesh dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!