How do I fill in the required areas?
Afficher commentaires plus anciens
Hello everyone! I try to fill areas as show on picture (as example below). The code to construct this diagramm is next:
n = 10;
m = 20;
for i = 1:n
rectangle('Position',[-i*0.5 -i*0.5 i i],'Curvature',[1 1]);
end
axis equal;
step = 2*pi/(m);
for j = 1:m/2
h(j) = sin((j-1)*step)*n/2;
w(j) = cos((j-1)*step)*n/2;
line([-w(j) w(j)], [-h(j) h(j)],'Color','red');
end
Numbers n and m will be changed. How do I fill in the required areas? In future this graph will be in 3D format, where white color is higher (z = 1), black color z = 0.

Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Surface and Mesh Plots 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!