Está en la página 1de 5

Matlab

Graficar la siguientes funciones


y=2cos ⁡(2 x)
MATLAB:

syms x

x=−20∗pi :20∗pi ; y=2∗cos ( 2∗x ) ; plot ( y ) ; grid


y=3 x 2
MATLAB:

syms x

x=−50 :50 ; y=3∗x .2 ; plot ( y ) ; gri d


y=2 x 2−2 x+3
MATLAB:

syms x

x=−100 :100 ; y=2∗x .2−2∗x+ 3 ; plot ( y ) ; grid


y= √ 2 x+ 3
MATLAB:

syms x

x=−1 :10 ; y=√ ( 2∗x +3 ) ; plot ( y ) ; grid


y=2 x +2
MATLAB:

syms x

x=−35 :35 ; y=2∗x+ 2; plot ( y ) ; grid

También podría gustarte