You are on page 1of 4

PRACTICA CALIFICADA MATLAB

a) Y=-4√5 − 2𝑋
figure(1);
ezplot('-4*sqrt(5-2*x)')

b) Y=10𝑥 2

figure(2);
ezplot('10*x^2')
c) Y = Sen(x)

figure(3);
ezplot('sin(x)')
d) Y= 𝑥 3 +1 en el dominio [-10<x<10]

figure(4);
ezplot('x^3 + 1',[-10,10])

You might also like