plot arc that pass through a particular point

조회 수: 1 (최근 30일)
Elysi Cochin
Elysi Cochin 2021년 6월 21일
편집: Elysi Cochin 2021년 6월 22일
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?

채택된 답변

Sergey Kasyanov
Sergey Kasyanov 2021년 6월 21일
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
Sergey Kasyanov
Sergey Kasyanov 2021년 6월 22일
Is it OK?
Elysi Cochin
Elysi Cochin 2021년 6월 22일
편집: Elysi Cochin 2021년 6월 22일
Thank you Sir, now its working

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Waveform Generation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by