File:Laplaces method.png

File:Laplaces method.svg is a vector version of this file. It should be used in place of this PNG file when not inferior.Category:Vector version available

File:Laplaces method.png → File:Laplaces method.svg

For more information, see Help:SVG.

In other languages
Alemannisch  العربية  беларуская (тарашкевіца)  български  বাংলা  català  нохчийн  čeština  dansk  Deutsch  Ελληνικά  English  British English  Esperanto  español  eesti  euskara  فارسی  suomi  français  Frysk  galego  Alemannisch  עברית  हिन्दी  hrvatski  magyar  հայերեն  Bahasa Indonesia  Ido  italiano  日本語  ქართული  한국어  lietuvių  македонски  മലയാളം  Bahasa Melayu  မြန်မာဘာသာ  norsk bokmål  Plattdüütsch  Nederlands  norsk nynorsk  norsk  occitan  polski  prūsiskan  português  português do Brasil  română  русский  sicilianu  Scots  slovenčina  slovenščina  српски / srpski  svenska  தமிழ்  ไทย  Türkçe  татарча / tatarça  українська  vèneto  Tiếng Việt  中文  中文(中国大陆)  中文(简体)  中文(繁體)  中文(马来西亚)  中文(新加坡)  中文(臺灣)  +/−
New SVG image

Summary

Description
English: Illustration of the method of steepest descent
Date (UTC)
Source self-made with Matlab
Author Oleg Alexandrov
Permission
(Reusing this file)
Public domain
 
This diagram was created with MATLAB.
Category:PNG created with MATLAB#Laplaces%20method.png

Source code

% Illustration of Laplace's method

N   = 500;
L   = 15;
fs  = 12;
lw  = 2;
lw2 = 1;

X = linspace(-L, L, N)+eps;
f = sin(X)./X;
g = (1-X.^2/6);

figure(1); clf; hold on;
q = 1.01;

subplot(2, 3, 1);
set(gca, 'fontsize', fs);
set(gca, 'LineWidth', lw2);
hold on;
M = 0.5;
Y = exp(M*f);
Z = exp(M*g);
plot(X, Z, 'r', 'linewidth', lw);
plot(X, Y, 'b', 'linewidth', lw);
R = max(Z);
axis([-L, L, 0, q*R]);

subplot(2, 3, 4);
set(gca, 'fontsize', fs);
set(gca, 'LineWidth', lw2);
hold on;
M = 3;
Y = exp(M*f);
Z = exp(M*g);
plot(X, Z, 'r', 'linewidth', lw);
plot(X, Y, 'b', 'linewidth', lw);
R = max(Z);
axis([-L, L, 0, q*R]);

saveas(gcf, 'Laplaces_method.eps', 'psc2');

% Converted from eps to png with the formula
% convert -antialias -density 200 Laplaces_method.eps Laplaces_method.png

Licensing

Public domain I, the copyright holder of this work, release this work into the public domain. This applies worldwide.
In some countries this may not be legally possible; if so:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.
Category:Self-published work#Laplaces%20method.pngCategory:PD-self#Laplaces%20method.png Category:Numerical analysis Category:Files by User:Oleg Alexandrov from en.wikipedia Category:Images with Matlab source code
Category:Files by User:Oleg Alexandrov from en.wikipedia Category:Images with Matlab source code Category:Numerical analysis Category:PD-self Category:PNG created with MATLAB Category:Self-published work Category:Vector version available