Find all y values for single x in polyshape plot

조회 수: 1 (최근 30일)
Yehor Zhyliaiev
Yehor Zhyliaiev 2022년 4월 20일
댓글: Jon 2022년 4월 22일
I whould like to somehow get all y values that correspond to a given x.
pgon = polyshape([0 0 1 1],[1 0 0 1])
plot(pgon)
Expected functionality:
y = findYbyX(pgon, 0.2);
Output:
y = [0, 1]

채택된 답변

Jon
Jon 2022년 4월 20일
편집: Jon 2022년 4월 20일
You can use the intersect function for this, for example
pgon = polyshape([0 0 1 1],[1 0 0 1])
endpoints = intersect(pgon,[0.2 0;0.2 10])
y = endpoints(:,2); % just keep the y values of the intersecting line segment
  댓글 수: 2
Yehor Zhyliaiev
Yehor Zhyliaiev 2022년 4월 22일
Thanks
Jon
Jon 2022년 4월 22일
Your welcome, glad that this worked for you

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Elementary Polygons에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by