Você está na página 1de 2

V

V=1
V
clc
s=V(;,2)
s=V[;,2]
s=V[;2]
clc
S=V(:,2)
clc
n=V(;,1)
n=V(:,1)
clc
B=(:,3)
B=V(:,3)
clc
H=V(:,4)
clc
U=(sqrt(S)/n)*(B*H/(B+2*H))^.67
U=(sqrt(S)/n)*(B*H/(B+2*H))^2
S=S`
S=S'
B=B'
n=n'
H=H'
U=(sqrt(S)/n)*(B*H/(B+2*H))^2
U=(sqrt(S)./n)*(B.*H/(B+2*H)).^2
U=(sqrt(S)./n)*(B.*H/(B+2*H))..67
U=(sqrt(S)./n)*(B.*H/(B+2*H)).^(3/2)
U=(sqrt(S)./n)*(B.*H/(B+2*H)).^(2/3)
U=(sqrt(S)./n)*(B.*H/(B+2*H))^(2/3)
U=(sqrt(S)./n)*(B.*H/(B+2*H)).^(2/3)
n
S
format short
S
B
U=(sqrt(S)./n)*(B.*H/(B+2*H)).^(2/3)
U=(sqrt(S)./n).*(B.*H/(B+2*H)).^(2/3)
U=(sqrt(S)./n).*(B.*H./(B+2*H)).^(2/3)
clc
x=0:3*pi/2
x=0:.1:3*pi/2
cosx=1-(x*x)/2+(x^4/fact(4))-(x^6/fact(6))
cosx=1-(x.^2)./2+(x.^4./fact(4))-(x.^6./fact(6))
cosx=1-(x.^2)./2+(x.^4./24)-(x.^6./720)
plot(x,cosx)
cosx=1-((x.^2)./2)+(x.^4./24)-(x.^6./720)
x=x*(pi/180)
cosx=1-((x.^2)./2)+(x.^4./24)-(x.^6./720)
plot(x,cosx)
x=0:270
x=x*(3*pi/2)
cosx=1-((x.^2)./2)+(x.^4./24)-(x.^6./720)
clc
x
x=0:270
cosx=1-((x.^2)./2)+(x.^4./24)-(x.^6./720)
x
x=x*(pi/180)

cosx=1-((x.^2)./2)+(x.^4./24)-(x.^6./720)
x
t=[10,20,30,40,50,60]
c=[3.4,2.6,1.6,1.3,1,.5]
plot(t,c)
plot(t,c,'r:*')
hold on
t=0:70
c=4.84*exp^-.034*t
c=4.84*2.71^-.034*t
plot(t,c)
c=4.84*2.71^(-.034.*t)
c=4.84*(2.71^(-.034.*t))
c=4.84*(exp(-.034.*t))
plot(t,c)
clc
t=[10,20,30,40,50,60]
c=[3.4,2.6,1.6,1.3,1,.5]
plot(c,t)
t=0:70
c=4.84*(exp(-.034.*t))
hold on
plot(c,t)
c
t
semilogc(t,c)
semilogy(t,c)
hold off
semilogy(t,c)
clc
plotSin(.56,.45)
plotSin(.56)

Você também pode gostar