Identify two coordinates on the X-axis and Y-axis of a 3D object
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Alberto Acri
am 29 Dez. 2022
Bearbeitet: Matt J
am 29 Dez. 2022
Hello! I should retrieve the outermost coordinates on the XY plane of a 3D object.
In detail:
I have a 3D object -> I display it on the XY plane -> on this XY plane I want to determine the outermost coordinates:
- two coordinates on the X axis (one on the left and one on the right)
- two coordinates on the Y axis (one above and one below)

data = importdata("NODES_finger_1.txt");
figure
plot3(data(:,1),data(:,2),data(:,3),'k.','Markersize',10)
grid on
xlabel('x')
ylabel('y')
zlabel('z')
view([15,50,30])
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graphics Performance 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!