Practica 1_ds.docx

  • Uploaded by: Moosy Morals
  • 0
  • 0
  • December 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Practica 1_ds.docx as PDF for free.

More details

  • Words: 211
  • Pages: 4
Practica 1: Graficando una función Y=a*sin (bx+c)+d %Salazar Consuelos Ramón Antonio %En este programa haremos la demostración de unas gráficas poniendo en práctica lo aprendido en clase y retomando las características de una onda senoidal como amplitud, frecuencia, periodo, fase y frecuencia angular. %09-febrero-2019 %Diseño de Antenas.

Función: y1=100e6*sin (1e6πt) clc; close all; clear all; Amp1=100e6; %Amplitud Frecang1=1e6; %Frecuencia Angular Frec1=Frecang1/2; %Frecuencia t1=0:.001/Frec1:1/Frec1;%Periodo Fas=0; %Fase y1=Amp1*sin (pi*Frecang1*t1+deg2rad (Fas)); %subplot (3,2,1); figure plot(t1,y1,'--r','linewidth',2);shg title('y=sin(\omega t+\phi)','color','r','fontsize',18); xlabel('time (seg)','color','c','fontsize',18); ylabel('Amp (volts)','color','g','fontsize',18); grid on

Función: y2=5e9*sin (2e9πt-π/2) Amp2=5e9; %Amplitud Frecang2=2e9; %Frecuencia Angular Frec2=Frecang2/2; %Frecuencia t2=0:.001/Frec2:1/Frec2;%Periodo Fas2= (-pi/2); %Fase y2=Amp2*sin (pi*Frecang2*t2+deg2rad (Fas2)); %subplot (3,2,2); figure plot (t2,y2,'--g','linewidth',2);shg title('y=sin(\omega t+\phi)','color','r','fontsize',18); xlabel('time (seg)','color','c','fontsize',18);

ylabel('Amp (volts)','color','g','fontsize',18); grid on

Función: y3=7e-3*sin (5e3πt+π/4) Amp3=7e-3; %Amplitud Frecang3=5e3; %Frecuencia Angular Frec3=Frecang3/2; %Frecuencia t3=0:.001/Frec3:1/Frec3; %Periodo Fas3=pi/4; %Fase y3=Amp3*sin (pi*Frecang3*t3+deg2rad (Fas3)); %subplot (3,2,3); figure plot (t3,y3,'--m','linewidth',2);shg title('y=sin(\omega t+\phi)','color','r','fontsize',18); xlabel('time (seg)','color','c','fontsize',18); ylabel('Amp (volts)','color','g','fontsize',18); grid on

Función: y4=8e-6*sin (4.8e9πt-π) Amp4=8e-6; %Amplitud Frecang4=4.8e9; %Frecuencia Angular Frec4=Frecang4/2; %Frecuencia t4=0:.001/Frec4:1/Frec4; %Periodo Fas4=-pi; %Fase y4=Amp4*sin (pi*Frecang4*t4+deg2rad(Fas4)); %subplot (3,2,4); figure plot (t4,y4,'--b','linewidth',2);shg title('y=sin(\omega t+\phi)','color','r','fontsize',18); xlabel('time (seg)','color','c','fontsize',18); ylabel('Amp (volts)','color','g','fontsize',18);

grid on

Función: y5=4e3*sin (-5e3πt+π/2) Amp5=4e3;%Amplitud Frecang5=-5e3;%Frecuencia Angular Frec5=Frecang5/2;%Frecuencia t5=0:.001/Frec5:1/Frec5;%Periodo Fas5=pi/2;%Fase y5=Amp5*sin(pi*Frecang5*t5+deg2rad(Fas5)); %subplot(3,2,5); figure plot(t5,y5,'--k','linewidth',2);shg title('y=sin(\omega t+\phi)','color','r','fontsize',18); xlabel('time (seg)','color','c','fontsize',18); ylabel('Amp (volts)','color','g','fontsize',18); grid on

Función: y6=5e6*sin (-2πt) Amp6=5e6;%Amplitud Frecang6=-2;%Frecuencia Angular Frec6=Frecang6;%Frecuencia t6=0:.001/Frec6:1/Frec6;%Periodo Fas6=0;%Fase y6=Amp6*sin(2*pi*Frecang6*t6+deg2rad(Fas6)); %subplot(3,2,6); figure plot(t6,y6,'--c','linewidth',2);shg title('y=sin(\omega t+\phi)','color','r','fontsize',18); xlabel('time (seg)','color','c','fontsize',18); ylabel('Amp (volts)','color','g','fontsize',18); grid on

Related Documents

Practica
November 2019 82
Practica
October 2019 95
Practica
June 2020 62
Practica
April 2020 49
Practica
November 2019 82
Practica
June 2020 47

More Documents from ""