Ficheiro:Exp series.gif

Os contidos da páxina non están dispoñibles noutras linguas.
Na Galipedia, a Wikipedia en galego.

Exp_series.gif(292 × 392 píxeles; tamaño do ficheiro: 51 kB; tipo MIME: image/gif, en bucle, 9 fotogramas, 9,0 s)

Descrición
English: Illustration of the en:Exponential function
العربية: الرسم البياني للدالة الأسية
Data Oleg Alexandrov 03:11, 30 August 2007 (UTC)
Orixe self-made with MATLAB.
Autoría Oleg Alexandrov
 
Esta GIF imaxe foi creada co MATLAB.
Public domain Eu, como posuidor dos dereitos de autor desta obra, libéroa para que pertenza ao dominio público. Isto é válido en todo o mundo.
Nalgúns países, isto pode non ser legalmente posible; entón:
Concedo a calquera o dereito de empregar esta obra para o propósito que considere oportuno, sen condicións, agás aquelas que sexan requiridas pola lei.

MATLAB source code

% The exponential function as the sum of its Taylor series

function main()

   % KSmrq's colors
   red    = [0.867 0.06 0.14];
   blue   = [0, 129, 205]/256;
   green  = [0, 200,  70]/256;
   yellow = [254, 194,   0]/256;
   white = 0.99*[1, 1, 3];

% Set up the grid and other parameters
   N = 100;
   A = -3; B = 3; 
   X = linspace(A, B, N);
   Y = exp(X);
   D = max(Y); C = -0.2*D;
   

% plot the frames

   Sum = 0*X; Term = 0*X+1;
   num_frames = 8;
   for j=0:num_frames

      Sum = Sum+Term;
      Term = Term.*X/(j+1);

      % Set up the figure
      lw = 3; % linewidth
      fs = 20; % font size
      figure(1); clf; set(gca, 'fontsize', fs);
      hold on; grid on;
      set(gca, 'DataAspectRatio', [1 3 1]); % aspect ratio
      
      plot_axes (A, B, C, D, lw/1.3);

      plot(X, Sum, 'color', blue, 'linewidth', lw);
      plot(X, Y,   'color', red, 'linewidth', lw);

      axis([A, B, C, D]);
      
      text_str = sprintf('{\\it n}=%d', j)
      H= text (1.2, 18, text_str, 'fontsize', floor(1.2*fs))

      frame=sprintf('Frame%d.eps', 1000+j);
      disp(frame)
      saveas(gcf, frame, 'psc2');
         
   end

% Convert to animation with the command
% convert -antialias -loop 10000  -delay 100 -compress LZW Frame100* Exp_series.gif
   
   
function plot_axes (A, B, C, D, lw)
   
   black = [0, 0, 0];

   plot([A B], [0, 0], 'linewidth', lw, 'color', black);
   plot([0, 0], [C, D], 'linewidth', lw, 'color', black);

Pés de foto

Engada unha explicación dunha liña do representa este ficheiro

Elementos retratados neste ficheiro

representa a

Historial do ficheiro

Prema nunha data/hora para ver o ficheiro tal e como estaba nese momento.

Data/HoraMiniaturaDimensiónsUsuarioComentario
actual30 de agosto de 2007 ás 03:21Miniatura da versión ás 03:21 do 30 de agosto de 2007292 × 392 (51 kB)Oleg Alexandrovtweak
30 de agosto de 2007 ás 03:20Miniatura da versión ás 03:20 do 30 de agosto de 2007291 × 391 (50 kB)Oleg Alexandrovtweak
30 de agosto de 2007 ás 03:11Miniatura da versión ás 03:11 do 30 de agosto de 2007289 × 386 (49 kB)Oleg Alexandrov{{Information |Description=Illustration of the en:Exponential function |Source=self-made with MATLAB. |Date=~~~~ |Author= Oleg Alexandrov }} Category:Calculus Category:Files by User:Oleg Alexandrov from en.wikipedia

A seguinte páxina usa este ficheiro:

Uso global do ficheiro

Os seguintes wikis empregan esta imaxe:

Ollar o uso global deste ficheiro.