Find a column of Z direction in 3D model

1 view (last 30 days)
Sara
Sara on 19 Aug 2021
Commented: Sara on 20 Aug 2021
Hello,
I am working on the 3D model. what I want to do is find a columns in Z direction.
So I can find the xy postions by using ginput function but I do not know how to find all positns postions in Z direction for xy poriton that I select.
filename = uigetfile('*.*')
A = importdata (filename);
symbole = A.textdata(:,1);
x0 = A.data(:,1);
y0 = A.data(:,2);
z0 = A.data(:,3);
figure,
scatter3(x0,y0,z0);
% view([0 0 1]);axis equal;
xlabel('x'); ylabel('y');zlabel('z')
G1 = ginput;
plot3(G1(1,1),G1(1,2),z0,'o', 'color','k');
As you can see I want to use xy postions that I obtained by using ginput to plot the z-direction coordinates for this specific xy.
what I get from that is code is NOT shown me right plot of z- dreiction in selected xy
NOTE:
I attached a txt file contains coordnates of xyz. I obtained this xyz coordinates from using VESTA.

Accepted Answer

DGM
DGM on 20 Aug 2021
Idk if this is more what you're after:
A = importdata('magnetite_DATA_1.txt');
symbole = A.textdata(:,1);
x0 = A.data(:,1);
y0 = A.data(:,2);
z0 = A.data(:,3);
scatter3(x0,y0,z0);
xlabel('x'); ylabel('y'); zlabel('z')
% do selection in 2D
view(2); axis equal; hold on
G1 = ginput;
% find the samples near G1
m = any(sqrt((x0-G1(:,1).').^2 + (y0-G1(:,2).').^2)<=0.65,2);
plot3(x0(m),y0(m),z0(m),'o', 'color','k');
view(3) % switch back to 3D
This example shows two columns selected

More Answers (0)

Categories

Find more on Visual Exploration in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!