How Can I modify the fill command?

조회 수: 2 (최근 30일)
Francesco
Francesco 2014년 2월 25일
답변: Walter Roberson 2014년 2월 25일
Is there another MATLAB command like fill. If I utilize this command the output is not what I'm looking for. I want the area inside these coordinates value.
fill(coord_x, coord_y, 'r')
The code connects the points not in the way I want. Is there any other command?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 2월 25일
편집: Azzi Abdelmalek 2014년 2월 25일
Maybe your coordinates are not correct. Look at this example
fill([0 1 1 0 0],[0 0 1 1 0],'r')
xlim([-2 2])
  댓글 수: 9
Francesco
Francesco 2014년 2월 25일
Image the patch command do the same! :
Azzi Abdelmalek
Azzi Abdelmalek 2014년 2월 25일
Francesco, thanks for your remarks, but accepting an answer means your problem is solved, you can vote an answer, but don't accept it until it helps you,
Try this
coord_x =[ 32.5000 32.5000 37.0000 37.5000]
coord_y =[17.5000 13.7500 16.0000 15.0000]
[idx,idx]=sort(coord_y)
fill(coord_x(idx), coord_y(idx), 'r')

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2014년 2월 25일
Find the centroid of the points. Then sort all of the points according to their polar angle relative to the centroid. If you sortrows() of the angle and the radius and then you reverse the order then it will be counter-clockwise and largest radius first, which happens to be one of the better ways of creating polygons.

카테고리

Help CenterFile Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by