Está en la página 1de 2

Julian

Santiago rojas díaz prog. Matlab quiz tecnología electromecánica



PUNTO 1
p=760;
a=8.96253;
b=1302.600;
c=200.555;
T=-c-(b)/(log10(p)-a)

PUNTO 2
g= d1+2*d1+2*d1-1000==12000
[d1]=solve(g)
d2=d1*2
d3=d2-1000


PUNTO 3
b1=10000
a=0.08
r=15
q=2.71828
P=b1*q^(a*r)
Po=10000;
a=0.08;
r=0:1:15;
p=po.*exp(a*r)
subplot(4,0,1)
plot(r,p)
xlabel('tiempo')
ylabel('interes')
subplot(4,0,2)
semilogx(r,p)
xlabel('tiempo')
ylabel('interes')
subplot(4,0,3)
semilogy(r,p)
xlabel('tiempo')
ylabel('interes')
subplot(4,0,4)
loglog(r,p)
xlabel('tiempo')
ylabel('interes')

También podría gustarte