Anuncio

Colapsar
No hay ningún anuncio todavía.

Gráficas

Colapsar
X
 
  • Filtro
  • Hora
  • Mostrar
Borrar todo
nuevos mensajes

  • Matlab Gráficas

    [FONT=Trebuchet MS]Podríais ayudarme con este ejercicio, no se me ocurre ningún modo para hacerlo:

    Usa únicamente sola figura para representar en diferentes panales (usa subplot) las siguientes funciones. En el panel 1, dibujar la función en el intervalo [-2 2] empleando 100 datos equiespaciados y en los paneles 3 y 5, respectivamente, las funciones y [/FONT]
    [FONT=Trebuchet MS]Cada función debe ir en un color y en un estilo de línea diferente. Añade sólo en la figura del panel 5 el comando grid on.[/FONT]
    [FONT=Trebuchet MS] En el panel 6 se representará la última función en escala logarítmica en uno de los ejes. En el panel 2 se representará la primera función empleando stem. En el panel 4 se representará la segunda función empleando hist.

    Un saludo[/FONT]
    [FONT=times new roman]"An expert is a person who has made all the mistakes that can be made in a very narrow field."
    [/FONT]

    [FONT=times new roman]"When one teaches, two learn."[/FONT]

    \dst\mathcal{L}_{\text{QED}}=\bar{\Psi}\left(i\gamma_{\mu}D^{\mu}-m\right)\Psi

  • #2
    Re: Gráficas

    Al final conseguí hacer el ejercicio, y creo que de manera correcta, así que por si a alguien le interesa aquí pongo la solución que encontré. De cualquier modo si alguien encuentra algún error que me lo comunique.
    [FONT=Courier]

    subplot(3,2,1);[/FONT]
    [FONT=Courier]x=-2:1/25:2;[/FONT]
    [FONT=Courier]y=exp(-x.^2);[/FONT]
    [FONT=Courier]hold on [/FONT]
    [FONT=Courier]plot (x,y,'r','Linewidth',2);[/FONT]
    [FONT=Courier]axis([-2 2 0 1]);[/FONT]
    [FONT=Courier]subplot(3,2,3);[/FONT]
    [FONT=Courier]x1=-2:1/25:2;[/FONT]
    [FONT=Courier]y1=exp(-(x1/2).^2);[/FONT]
    [FONT=Courier]hold on[/FONT]
    [FONT=Courier]plot (x1,y1,'b--');[/FONT]
    [FONT=Courier]axis([-2 2 0.3 1]);[/FONT]
    [FONT=Courier]subplot(3,2,5);[/FONT]
    [FONT=Courier]x2=-2:1/25:2;[/FONT]
    [FONT=Courier]y2=exp(-(2*x2).^2);[/FONT]
    [FONT=Courier]hold on[/FONT]
    [FONT=Courier]plot (x2,y2,'g:','Linewidth',2);[/FONT]
    [FONT=Courier]axis([-2 2 0 1]);[/FONT]
    [FONT=Courier]grid on[/FONT]
    [FONT=Courier]subplot(3,2,6);[/FONT]
    [FONT=Courier]x2=-2:1/25:2;[/FONT]
    [FONT=Courier]y2=exp(-(2*x2).^2);[/FONT]
    [FONT=Courier]hold on[/FONT]
    [FONT=Courier]semilogx(y2);[/FONT]
    [FONT=Courier]subplot(3,2,2);[/FONT]
    [FONT=Courier]x=-2:1/25:2;[/FONT]
    [FONT=Courier]y=exp(-x.^2);[/FONT]
    [FONT=Courier]hold on[/FONT]
    [FONT=Courier]stem(x,y);[/FONT]
    [FONT=Courier]subplot(3,2,4);[/FONT]
    [FONT=Courier]x1=-2:1/25:2;[/FONT]
    [FONT=Courier]y1=exp(-(x1/2).^2);[/FONT]
    [FONT=Courier]hold on[/FONT]
    [FONT=Courier]hist(y1);


    [/FONT]
    [FONT=Courier]Saludos[/FONT]
    [FONT=times new roman]"An expert is a person who has made all the mistakes that can be made in a very narrow field."
    [/FONT]

    [FONT=times new roman]"When one teaches, two learn."[/FONT]

    \dst\mathcal{L}_{\text{QED}}=\bar{\Psi}\left(i\gamma_{\mu}D^{\mu}-m\right)\Psi

    Comentario

    Contenido relacionado

    Colapsar

    Trabajando...
    X