Recursos con los que cuenta una empresa
17.- Representar un polígono compacto (Figura Nº 28), mediante la siguiente sintaxis:
>> X = [0 1 1 2; 1 1 2 2; 0 0 1 1];
>> Y = [1 1 1 1; 1 0 1 0; 0 0 0 0];
>> Z = [1 1 1 1; 1 0 1 0; 0 0 0 0];
>> C = [0.5 1 1 0.5; 1 0.5 0.5 0.1667; 0.3330 0.3330 0.5 0.5];
>> fill3(X,Y,Z,C)
18.- Representar la hélice paramétrica x(t) = Sen(t), y(t) = Cos(t) y z(t) = t, para valores de t entre y 10π separados entre π/50. (Figura Nº 29)
>> t = 0 : pi/50 : 10*pi;
>> plot3(sin(t),cos(t),t)
>> grid on
>> axis square
19.- Seguidamente se representan sobre los mismos ejes las dos hélices paramétricas x(t) = Sen(t), y(t) = Cos(t), z(t) = t y x(t) = Cos(t), y(t) = Sen(t) y z(t) = …ver más…
>> [X, Y] = meshgrid(-2 : 0.05 : 2);
>> Z = X.^2 – Y.^2;
>> surf(X, Y, Z),shading interp, brighten(0.75), colormap(gray(5))
33.- Representar sobre los mismos ejes la curva enfocada desde cuatro puntos de vista distintos y con el sombreado por defecto de la gráfica anterior (Figura Nº 45).
>> [X, Y] = meshgrid(-2 : 0.05 : 2);
>> Z = X.^2 - Y.^2;
>> subplot(2,2,1)
>> surf(X, Y, Z)
>> subplot(2,2,2)
>> surf(X, Y, Z),view(-90,0)
>> subplot(2,2,3)
>> surf(X, Y, Z),view(60,20)
>> subplot(2,2,4)
>> surf(X, Y, Z),view(-10,30)
34.- Representar sobre una esfera distintos sombreados (Figura Nº 46).
>> subplot(3,1,1)
>> sphere(16)
>> axis square
>> shading flat
>> title('Sombreado Suave')
>> subplot(3,1,2)
>> sphere(16)
>> axis square
>> shading faceted
>> title('Sombreado Normal')
>> subplot(3,1,3)
>> sphere(16)
>> axis square
>> shading interp
>> title('Sombreado Denso')
35.- Representar la superficie de una Gaussiana bidimensional con cambio de origen y de escala (Figura Nº 47).
>> h = surf(peaks(20))
36.- Representaremos en la (Figura Nº 48) la rotación a 180º alrededor del eje X.
>> h = surf(