Está en la página 1de 2

Quiz

de programación matlab. Ávila cornejo José





1 punto:

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


2 punto

p= t1+2*t1+2*t1-1000==12000
[t1]=solve(p)
t2=t1*2
t3=t2-1000

3 punto

s1=10000
q=0.08
w=15
z=2.71828
o=s1*z^(q*w)

po=10000;
q=0.08;
w=0:1:15;
o=po.*exp(q*w)
subplot(6,0,1)
plot(w,o)
xlabel('tiempo')
ylabel('interes')
subplot(6,0,2)
semilogx(w,o)
xlabel('tiempo')
ylabel('interes')
subplot(6,0,3)
semilogy(w,o)
xlabel('tiempo')
ylabel('interes')
subplot(6,0,4)
loglog(w,o)
xlabel('tiempo')
ylabel('interes')

También podría gustarte