Graficas

Post on 06-Dec-2015

214 views 0 download

description

graficas

Transcript of Graficas

PROGRAMA PARA GRAFICAR TRES ECUACIONES EN UNA MISMA GRÁFICA.

Realizar un programa que grafique las siguientes funciones en una sola gráfica:

z=((21-(10.33*X)+(14.15*Y))/12.33) z=((23-(11.15*Y))/-12.18) z=((25.7-(5*X)+(3*Y))/2)

Diagrama de Flujo:

x -60:1:60

y -60:1:60

[X,Y] meshgrid(x,y)

z ((21-(10.33*X)+(14.15*Y))/12.33)

x -60:1:60

[X,Y]meshgrid(x,y)

[X,Y]meshgrid(x,y)

y -60:1:60

y -60:1:60

z ((23-(11.15*Y))/-12.18)

x -60:1:60

z ((25.7-(5*X)+(3*Y))/2)

FIN

INICIO

Pseudocódigo:

x -60:1:60 y -60:1:60 [X,Y] meshgrid(x,y) z ((21-(10.33*X)+(14.15*Y))/12.33) x -60:1:60 y -60:1:60 [X,Y]meshgrid(x,y) z ((23-(11.15*Y))/-12.18) x -60:1:60 y -60:1:60 [X,Y]meshgrid(x,y) z ((25.7-(5*X)+(3*Y))/2)

Programa:

Prueba de escritorio: