BCC - Aula 01 - Fundamentos Da Computação
BCC - Aula 01 - Fundamentos Da Computação
BCC - Aula 01 - Fundamentos Da Computação
Aula 01 –
Fundamentos de computação e
Representação gráfica de funções
2Q-2017
Fundamentos de computação
Computação em todos os lugares
http://www.gapminder.org/world/
#$majorMode=chart$is;shi=t;ly=2003;lb=f;il=t;fs=11;al=30;stl=t;st=t;nsl=t;se=t$wst;tts=C$ts;sp=5.59290322580644;ti=2008$zpv;v=0$inc_x;mmid=XCOORDS;iid=ti;by=ind$inc_y;mmid=YCOORDS;iid=phAwcNA
Vuyj1NHPC9MyZ9SQ;by=ind$inc_s;uniValue=4.86;iid=phAwcNAVuyj0XOoBL_n5tAQ;by=universal$inc_c;uniValue=255;gid=CATID0;by=grp$map_x;scale=log;dataMin=1751;dataMax=2008$map_y;scale=lin;dataM
in=0;dataMax=7031277$cd;bd=0$inds=i44_t001899,,,,;i240_t001800,,,,;i101_t001858,,,,;i184_t001992,,,,;i110_t001950,,,,;i29_t001901,,,,;i102_t001889,,,,
Modelando de fenômenos...
Digitando o comando:
l
igual a 2.
tela:
Scilab
guardados em z e x, ou seja, w
l será igual a 7
Scilab
l exp(x) = e e = 2,7182...
x
Scilab: Exercício 00
-->x = [1,2,3,4,5,6]
-->y = x.^2
-->plot (x,y)
Scilab: Exercício 00
-->x = [1,2,3,4,5,6]
-->y = x.^2
-->plot (x,y,'ro-')
Scilab: Exercício 00
-->x = [-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6];
-->y = x.^2
-->plot (x,y,'bx-')
-->x = -100:0.1:100;
-->y = x.^2
-->plot (x,y,'gs-')
-->length(x)
-->length(y)
-->whos
Scilab: Exercício 01
No intervalo x ∈ [0;2π]
l
-->x = 0:1:2*%pi
-->y = sin(x)
-->plot (x,y,'gs-')
Scilab: Exercício 01
-->x = 0:0.1:2*%pi
-->y = sin(x)
-->plot (x,y,'gs-')
Scilab: Exercício 01
x = 1:0.01:4;
y = x.^2-5.*x+6;
plot(x,y)
plot(2,0,'r*')
plot(3,0,'g*')
Scilab: Exercício 03
Desenhe a função
l l no intervalo x = [0; 40]
Scilab: Exercício 03
Desenhe a função
l l no intervalo x = [0; 40]
-->x=0:0.1:40;
-->y = x./(1+x.^2);
-->plot(x,y);
Scilab: Exercício 03
-->clf()
-->x = -5:0.1:5;
-->y1 = 2.*x;
-->y2 = -x.^2+4*.x;
-->plot(x,y1,'r-')
-->plot(x,y2,'b-')
Scilab: Exercício 03
-->find(y1==y2)
ans =
51. 71.
-->x(find(y1==y2))
ans =
0. 2.
* find acha as posições dentro dos vetores cujo os valores verificam a condição ==
Scilab: Exercício 04
l x = 0:0.01:100;
l y = exp(-x.^2/200).*sin(x);
l plot (x,y);
Scilab: Exercício 05
Desenhe a função
l
d = [-3:0.1:3];
[x,y] = meshgrid (d);
z = sin(x) .* cos(y);
plot3d(d,d,z)