പൂർണ്ണ വലിപ്പം(2,706 × 1,733 പിക്സൽ, പ്രമാണത്തിന്റെ വലിപ്പം: 80 കെ.ബി., മൈം തരം: image/png)

വിവരണം Illustration of Cauchy sequence
തീയതി
സ്രോതസ്സ് self-made, with matlab
സ്രഷ്ടാവ് Oleg Alexandrov
അനുമതി
(ഈ പ്രമാണത്തിന്റെ പുനരുപയോഗം)
Public domain
മറ്റു പതിപ്പുകൾ
ഈ ചിത്രത്തിന്റെ ഒരു വെക്റ്റർ പതിപ്പ് (SVG) File:Cauchy sequence illustration2.svg ലഭ്യമാണ്.
ഈ ചിത്രത്തിനേക്കാൾ മികച്ച റസല്യൂഷൻ ആവശ്യമെങ്കിൽ ഈ റാസ്റ്റർ ചിത്രത്തിനു പകരം അതുപയോഗിക്കേണ്ടതാണ്.

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

വെക്റ്റർ ഗ്രാഫിക്സിനെക്കുറിച്ച് കൂടുതൽ അറിയണമെന്നുണ്ടെങ്കിൽ, എസ്.വി.ജി.യിലേയ്ക്കുള്ള മാറ്റം എന്ന താൾ കാണുക.
മീഡിയവിക്കിയിൽ എസ്.വി.ജി.യ്ക്കുള്ള പിന്തുണ എന്നുമൊരു താൾ നിലവിലുണ്ട്.

മറ്റ് ഭാഷകളിൽ
Alemannisch  Bahasa Indonesia  Bahasa Melayu  British English  català  čeština  dansk  Deutsch  eesti  English  español  Esperanto  euskara  français  Frysk  galego  hrvatski  Ido  italiano  lietuvių  magyar  Nederlands  norsk bokmål  norsk nynorsk  occitan  Plattdüütsch  polski  português  português do Brasil  română  Scots  sicilianu  slovenčina  slovenščina  suomi  svenska  Tiếng Việt  Türkçe  vèneto  Ελληνικά  беларуская (тарашкевіца)  български  македонски  нохчийн  русский  српски / srpski  татарча/tatarça  українська  ქართული  հայերեն  বাংলা  தமிழ்  മലയാളം  ไทย  한국어  日本語  简体中文  繁體中文  עברית  العربية  فارسی  +/−
പുതിയ എസ്.വി.ജി. ചിത്രം

PNG വികസനം
InfoField
 
ഈ PNG ഗ്രാഫിക് സൃഷ്ടിച്ചത് MATLAB ഉപയോഗിച്ചാണ്.
സോഴ്സ് കോഡ്(കമ്പ്യൂട്ടിംഗ്)
InfoField

MATLAB code

% 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
Public domain ഈ സൃഷ്ടിയുടെ പകർപ്പവകാശ ഉടമയായ ഞാൻ, ഈ സൃഷ്ടി പൊതുസഞ്ചയത്തിൽ പ്രസിദ്ധീകരിച്ചിരിക്കുന്നു. ഇത് ആഗോള തലത്തിൽ ബാധകമാണ്.
ചില രാജ്യങ്ങളിൽ ഇത് നിയമപ്രകാരം സാദ്ധ്യമല്ലെന്ന് വന്നേക്കാം; അങ്ങനെയെങ്കിൽ:
ഈ സൃഷ്ടി, നിയമപ്രകാരം നിബന്ധനകൾ ഉണ്ടെങ്കിൽ അവയൊഴിച്ച്, യാതൊരു നിബന്ധനകളും ഇല്ലാതെ ഏതൊരാൾക്കും ഏതൊരു ഉപയോഗത്തിനും, ഉപയോഗപ്പെടുത്തുവാൻ ഞാൻ അനുവദിച്ചിരിക്കുന്നു.

തലവാചകങ്ങൾ

ഈ പ്രമാണം എന്തിനെ പ്രതിനിധീകരിക്കുന്നുവെന്ന ഒറ്റവരി വിശദീകരണം ചേർക്കുക

ഈ പ്രമാണത്തിൽ ചിത്രീകരിച്ചിരിക്കുന്ന ഇനങ്ങൾ

സൃഷ്ടിയിലുള്ളത്

3 ജൂൺ 2007

data size ഇംഗ്ലീഷ്

81,868 ബൈറ്റ്

1,733 പിക്സൽ

2,706 പിക്സൽ

പ്രമാണ നാൾവഴി

ഏതെങ്കിലും തീയതി/സമയ കണ്ണിയിൽ ഞെക്കിയാൽ പ്രസ്തുതസമയത്ത് ഈ പ്രമാണം എങ്ങനെയായിരുന്നു എന്നു കാണാം.

തീയതി/സമയംലഘുചിത്രംഅളവുകൾഉപയോക്താവ്അഭിപ്രായം
നിലവിലുള്ളത്21:35, 3 ജൂൺ 200721:35, 3 ജൂൺ 2007-ലെ പതിപ്പിന്റെ ലഘുചിത്രം2,706 × 1,733 (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

താഴെ കാണുന്ന താളിൽ ഈ ചിത്രം ഉപയോഗിക്കുന്നു:

പ്രമാണത്തിന്റെ ആഗോള ഉപയോഗം

താഴെ കൊടുത്തിരിക്കുന്ന മറ്റ് വിക്കികൾ ഈ പ്രമാണം ഉപയോഗിക്കുന്നു:

"https://ml.wikipedia.org/wiki/പ്രമാണം:Cauchy_sequence_illustration2.png" എന്ന താളിൽനിന്ന് ശേഖരിച്ചത്