plot arc that pass through a particular point

1 Ansicht (letzte 30 Tage)
Elysi Cochin
Elysi Cochin am 21 Jun. 2021
Bearbeitet: Elysi Cochin am 22 Jun. 2021
I have attached my (x,y,z) coordinate values
And i plot these values using the below code
load XYZ
for i = 1 : size(XX,2)
plot3(XX(:,i),YY(:,i),ZZ(:,i)); hold on
end
grid on; hold off;
But if we zoom, we can see that, the arcs does not pass through the zero-coordinate
What can i do, to make all the arcs (or any arc i give) pass through the zero-coordinate?

Akzeptierte Antwort

Sergey Kasyanov
Sergey Kasyanov am 21 Jun. 2021
Hello!
The simplest way is:
figure; hold on;
for i = 1 : size(XX,2)
[~, n] = max(XX(:,i));
plot3(XX(:,i), YY(:,i) - YY(n,i), ZZ(:,i)- ZZ(n,i));
end
  7 Kommentare
Sergey Kasyanov
Sergey Kasyanov am 22 Jun. 2021
Is it OK?
Elysi Cochin
Elysi Cochin am 22 Jun. 2021
Bearbeitet: Elysi Cochin am 22 Jun. 2021
Thank you Sir, now its working

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by