how to fill a colour in the area surrounded by lines, X &Yaxis and a curve
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen

0 Kommentare
Akzeptierte Antwort
KSSV
am 27 Okt. 2016
x = [0 50 50] ;
y = [100 100 150] ;
%%Add cooridnates for closing the given points in anti clockwise direction
xi = [50 150 150 0 0] ;
yi = [150 150 0 0 100] ;
xx = [x xi] ;
yy = [y yi] ;
plot(xx,yy)
patch(xx,yy,'r')
2 Kommentare
KSSV
am 28 Okt. 2016
Okay...not an issue...Follow the procedure what I have followed. Pick the other coordinates. This case is more easy. You have to pick only one coordinate.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Triangulation Representation 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!