Light-industry-up.ru

Экосистема промышленности

Файл:Cauchy sequence illustration2.png

02-05-2023

Изображение в более высоком разрешении(2706 × 1733 пикселя, размер файла: 80 КБ, MIME-тип: image/png)
Описание Illustration of en:Cauchy sequence
Дата 20:58, 3 June 2007 (UTC)
Источник self-made, with en:matlab
Автор Oleg Alexandrov
Права
(Повторное использование этого файла)

Public domain

Это изображение-график было создано с помощью MATLAB.
Имеется векторный вариант этого изображения ("SVG").
Его следует использовать, если оно имеет более высокое качество, чем эта растровая версия.


File:Cauchy sequence illustration2.png File:Cauchy sequence illustration2.svg

Чтобы узнать больше о векторной графике, прочтите статью Перевод изображений в формат SVG.
Также доступна информация о поддержке формата SVG в MediaWiki.


Alemannisch | Беларуская (тарашкевіца)‎ | Català | Česky | Dansk | Deutsch | Ελληνικά | English | Español | Eesti | Euskara | فارسی | Suomi | Français | Galego | עברית | Hrvatski | Magyar | Հայերեն | Italiano | 日本語 | ქართული | 한국어 | Lietuvių | Македонски | മലയാളം | Plattdüütsch | Nederlands | Norsk nynorsk | Norsk bokmål | Occitan | Polski | Português | Português do Brasil | Română | Русский | Slovenčina | Slovenščina | Српски / srpski | Svenska | ไทย | Türkçe | Українська | Vèneto | Tiếng Việt | 中文 | 中文(简体)‎ | 中文(繁體)‎ | 中文(台灣)‎ | +/−

Я, владелец авторских прав на это произведение, передаю его в общественное достояние. Это разрешение действует по всему миру.
В некоторых странах это не может быть возможно юридически, в таком случае:
Я даю право кому угодно использовать данное произведение в любых целях без каких-либо условий, за исключением таких условий, которые требуются по закону.

Source code (MATLAB)

 
 
% draw an illustration of a sequence that is not Cauchy
function main() 
 
% prepare the screen and define some parameters   
   figure(1); clf; hold on; axis equal; axis off;
 
   fontsize=30; thick_line=3; thin_line=2;
   black=[0, 0, 0]; red=[1, 0, 0]; blue=[0, 0, 1];
   arrowsize=0.5; arrow_type=1; arrow_angle=30; % (angle in degrees)
   circrad=0.07; % radius of ball showing up in places
 
 
   B=9;
   X=0:0.06:B;
 
   f=inline('(X+2)./(X+0.8)', 'X');
   Y=sin(5*X).*f(X);
 
   for i=1:length(X)
          ball(X(i), Y(i), circrad, blue);
   end
 
   X=0:0.05:(B+0.3);
   Z=f(X);
   plot(X, Z, 'r--', 'linewidth', thin_line)
   plot(X, -Z, 'r--', 'linewidth', thin_line)
 
 
   % draw the coordinate axes
   shift=-3;
   Kx=1.1; Ky=1.3; 
   L=max(Y); 
   arrow([-1 shift], [Kx*B, shift],  thin_line, arrowsize, arrow_angle, arrow_type, black) 
   arrow([-1, shift], [-1, Ky*L],    thin_line, arrowsize, arrow_angle, arrow_type, black) 
 
 
   text(Kx*B+0.6, shift,  '\it{n}', 'fontsize', fontsize, 'HorizontalAlignment', 'c')
   text(-1, Ky*L+0.8,  '\it{x_n}', 'fontsize', fontsize, 'HorizontalAlignment', 'c')
 
   % save to disk
   saveas(gcf, 'Cauchy_sequence_illustration2.eps', 'psc2') % export to eps
 
function ball(x, y, r, color)
   Theta=0:0.1:2*pi;
   X=r*cos(Theta)+x;
   Y=r*sin(Theta)+y;
   H=fill(X, Y, color);
   set(H, 'EdgeColor', 'none');
 
 
function arrow(start, stop, th, arrow_size, sharpness, arrow_type, color)
 
% Function arguments:
% start, stop:  start and end coordinates of arrow, vectors of size 2
% th:           thickness of arrow stick
% arrow_size:   the size of the two sides of the angle in this picture ->
% sharpness:    angle between the arrow stick and arrow side, in degrees
% arrow_type:   1 for filled arrow, otherwise the arrow will be just two segments
% color:        arrow color, a vector of length three with values in [0, 1]
 
% convert to complex numbers
   i=sqrt(-1);
   start=start(1)+i*start(2); stop=stop(1)+i*stop(2);
   rotate_angle=exp(i*pi*sharpness/180);
 
% points making up the arrow tip (besides the "stop" point)
   point1 = stop - (arrow_size*rotate_angle)*(stop-start)/abs(stop-start);
   point2 = stop - (arrow_size/rotate_angle)*(stop-start)/abs(stop-start);
 
   if arrow_type==1 % filled arrow
 
% plot the stick, but not till the end, looks bad
      t=0.5*arrow_size*cos(pi*sharpness/180)/abs(stop-start); stop1=t*start+(1-t)*stop;
      plot(real([start, stop1]), imag([start, stop1]), 'LineWidth', th, 'Color', color);
 
% fill the arrow
      H=fill(real([stop, point1, point2]), imag([stop, point1, point2]), color);
      set(H, 'EdgeColor', 'none')
 
   else % two-segment arrow
      plot(real([start, stop]), imag([start, stop]),   'LineWidth', th, 'Color', color); 
      plot(real([stop, point1]), imag([stop, point1]), 'LineWidth', th, 'Color', color);
      plot(real([stop, point2]), imag([stop, point2]), 'LineWidth', th, 'Color', color);
   end

История файла

Нажмите на дату/время, чтобы посмотреть файл, который был загружен в тот момент.

Дата/времяМиниатюраРазмерыУчастникПримечание
текущий21:35, 3 июня 20072706 × 1733 (80 КБ)Oleg Alexandrov{{Information |Description=Illustration of en:Cauchy sequence |Source=self-made, with en:matlab |Date= 20:58, 3 June 2007 (UTC) |Author= Oleg Alexandrov |Permission= Public domain |other_versions= }} {{PD-self}} == MAT

Следующая 1 страница ссылается на данный файл:

Глобальное использование файла

Данный файл используется в следующих вики:

  • Использование Cauchy sequence illustration2.png в da.wikipedia.org
    • Cauchyfølge
  • Использование Cauchy sequence illustration2.png в de.wikibooks.org
    • MathGymOS/ Analysis/ Folgen und Reihen/ Konvergenz und Divergenz von Folgen
  • Использование Cauchy sequence illustration2.png в en-labs.wikimedia.org
    • Calculus/Sequences
    • Calculus/Print version
  • Использование Cauchy sequence illustration2.png в en.wikibooks.org
    • Calculus/Sequences
    • Calculus/Print version
    • Partial Differential Equations/Printable Version
    • Partial Differential Equations/Vector Spaces: Mathematic Playgrounds
  • Использование Cauchy sequence illustration2.png в fa.wikipedia.org
    • دنباله
  • Использование Cauchy sequence illustration2.png в hu.wikipedia.org
    • Cauchy-sorozat
  • Использование Cauchy sequence illustration2.png в is.wikipedia.org
    • Runa
    • Cauchyruna
  • Использование Cauchy sequence illustration2.png в ja.wikipedia.org
    • コーシー列
    • 利用者‐会話:BUNBUN
    • 交項級数
  • Использование Cauchy sequence illustration2.png в ml.wikipedia.org
    • അനുക്രമം
  • Использование Cauchy sequence illustration2.png в nl.wikipedia.org
    • Rij (wiskunde)
  • Использование Cauchy sequence illustration2.png в pl.wikipedia.org
    • Ciąg Cauchy'ego
  • Использование Cauchy sequence illustration2.png в sr.wikipedia.org
    • Портал:Математика/Слика 6
    • Портал:Математика/Слике
    • Низ
  • Использование Cauchy sequence illustration2.png в sv.wikipedia.org
    • Cauchy-följd
  • Использование Cauchy sequence illustration2.png в xal.wikipedia.org
    • Даралт
  • Использование Cauchy sequence illustration2.png в zh.wikipedia.org
    • 序列
    • 柯西序列

Файл:Cauchy sequence illustration2.png.

© 2014–2023 light-industry-up.ru, Россия, Краснодар, ул. Листопадная 53, +7 (861) 501-67-06