creatting a polygon in matlab
Afficher commentaires plus anciens
hi
im going to create a polygon that is combination with points and function.
look at this picture

fourmula of top function is : y = 10+1*exp((-(x-15).^2)/10);
i want to creat a polygon the hatched figured
please help, thanks
Réponse acceptée
Plus de réponses (1)
Alan Stevens
le 4 Oct 2020
You could also use the patch function
x = [0 0:30 30 0];
y = [0 10+exp((-(x(2:end-2)-15).^2)/10) 0 0];
patch(x,y,'r')
Catégories
En savoir plus sur Elementary Polygons dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!