0% found this document useful (0 votes)
13 views3 pages

COMANDOS

Uploaded by

Bryan Medina
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views3 pages

COMANDOS

Uploaded by

Bryan Medina
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

>> % Grafica

hold on

x = [0.0 2.5 9.0 11.0 15.0 18.0 21.0 31.0 44.0 51.50 51.50];

y = [41.0 33.5 31.0 31.0 30.0 29.5 30.0 30.0 33.0 34.0 42.0];

plot(x,y,"LineWidth",5)

hold off

xlabel("horiontal");

ylabel("elevacion");

grid on

hold on

x = [11 42 42 11 11];

y = [31 31 41 41 31];

plot(x,y,"LineWidth",5)

hold off

xlabel("horiontal");

ylabel("elevacion");

grid on

>> % Grafica

hold on

x = [0 2.5 22 31 51.5 51.5];

y = [41 33.5 25.5 25.5 34 42];

plot(x,y,"LineWidth",1)
hold off

xlabel("Posicion horizontal");

ylabel("Elevacion");

grid on

hold on % Rectangulo inferior

x = [22 31 31 22 22];

y = [25.5 25.5 38 38 25.5];

plot(x,y,"LineWidth",1)

hold off

xlabel("Posicion horizontal");

ylabel("Elevacion");

grid on

hold on % Trapecio izquierdo

x = [2.5 22 22 2.5 2.5];

y = [33.5 25.5 38 38 33.5];

plot(x,y,"LineWidth",1)

hold off

xlabel("Posicion horizontal");

ylabel("Elevacion");

grid on

>>

>> hold on % Rectangulo superior

x = [2.5 51.5 51.5 2.5 2.5];

y = [38 38 41 41 38];

plot(x,y,"LineWidth",1)

hold off
xlabel("Posicion horizontal");

ylabel("Elevacion");

grid on

hold on %Trapecio derecho

x = [31 51.5 51.5 31 31];

y = [25.5 34 38 38 25.5];

plot(x,y,"LineWidth",1)

hold off

xlabel("Posicion horizontal");

ylabel("Elevacion");

grid on

hold on %Triangulo izquierdo

x = [2.5 2.5 0 2.5];

y = [33.5 41 41 33.5];

plot(x,y,"LineWidth",1)

hold off

xlabel("Posicion horizontal");

ylabel("Elevacion");

grid on

You might also like