File:Bump2D illustration.png
De Wikimedia Commons, el repositorio multimedia libre
Ir a la navegación
Ir a la búsqueda
Tamaño de esta previsualización: 800 × 492 píxeles. Otras resoluciones: 320 × 197 píxeles | 640 × 393 píxeles | 1024 × 629 píxeles | 1604 × 986 píxeles.
Archivo original (1604 × 986 píxeles; tamaño de archivo: 179 kB; tipo MIME: image/png)
Información del archivo
Datos estructurados
Leyendas
Resumen
[editar]DescripciónBump2D illustration.png | A bump function in 2D |
Fecha | |
Fuente | Trabajo propio |
Autor | Oleg Alexandrov |
PNG desarrollo InfoField | |
Código fuente InfoField | MATLAB code% illustration of a bump function in two dimensions
function main()
% the number of data points. More points means prettier picture.
N = 300;
% a function close to what we want, but not smooth
Z = get_step_function (N);
% a smooth function with small support, that will serve as mollifier
W = get_mollifier (N);
% get the convolution of the two, so a mollified step function
S = conv2(Z, W);
% truncate S at the edges, and scale it
p=0.2;
[m, n] = size(S);
m1 = floor(p*m)+1; m2=floor((1-p)*m)-1;
n1 = floor(p*n)+1; n2=floor((1-p)*n)-1;
S = S(m1:m2, n1:n2);
S = 100*S/max(max(S));
% plot the surface
figure(2); clf; hold on; axis equal; axis off;
surf(S);
% make the surface beautiful
shading interp;
colormap autumn;
% add in a source of light
camlight (-50, 54);
% viewing angle
view(-40, 38);
% save as png
print('-dpng', '-r400', 'Bump2D_illustration_uncropped.png');
% optionally, crop the margins
!convert -trim Bump2D_illustration_uncropped.png Bump2D_illustration.png
% get a function which is 1 on a set, and 0 outside of it
function Z = get_step_function(N)
XX = linspace(-1.5, 4, N);
YY = linspace(-4, 4, N);
[X, Y] = meshgrid(XX, YY);
c = 2;
k=1.2;
shift=10;
Z = (c^2-X.^2-Y.^2).^2 + k*(c-X).^3-shift;
Z =1-max(sign(Z), 0);
function W = get_mollifier(N)
% now try to get a function with compact support
% as a mollifier
% We will cheat by using a gaussian
a = 4;
XX = linspace(-a, a, N);
YY = linspace(-a, a, N);
[X, Y] = meshgrid(XX, YY);
K = 4;
W = exp(-K*(X.^2+Y.^2));
% truncate the Gaussian to make it with compact support
trunc = 1e-2;
W = max(W-trunc, 0);
|
Licencia
[editar]Public domainPublic domainfalsefalse |
Yo, el titular de los derechos de autor de esta obra, lo libero al dominio público. Esto aplica en todo el mundo. En algunos países esto puede no ser legalmente factible; si ello ocurriese: Concedo a cualquier persona el derecho de usar este trabajo para cualquier propósito, sin ningún tipo de condición al menos que éstas sean requeridas por la ley. |
Historial del archivo
Haz clic sobre una fecha y hora para ver el archivo tal como apareció en ese momento.
Fecha y hora | Miniatura | Dimensiones | Usuario | Comentario | |
---|---|---|---|---|---|
actual | 03:15 8 ago 2007 | 1604 × 986 (179 kB) | Oleg Alexandrov (discusión | contribs.) | Trying to fix some odd issues with the bounding box. | |
03:11 8 ago 2007 | 1590 × 979 (186 kB) | Oleg Alexandrov (discusión | contribs.) | {{Information |Description=A bump function in 2D |Source=self-made |Date=~~~~~ |Author= Oleg Alexandrov }} {{PD-self}} Category:Partial differential equations | ||
03:11 8 ago 2007 | 1590 × 979 (186 kB) | Oleg Alexandrov (discusión | contribs.) | {{Information |Description=A bump function in 2D |Source=self-made |Date=~~~~~ |Author= Oleg Alexandrov }} {{PD-self}} Category:Partial differential equations | ||
03:08 8 ago 2007 | 1590 × 979 (186 kB) | Oleg Alexandrov (discusión | contribs.) | {{Information |Description=A bump function in 2D |Source=self-made |Date=~~~~~ |Author= Oleg Alexandrov }} {{PD-self}} Category:Partial differential equations |
No puedes sobrescribir este archivo.
Usos del archivo
No hay páginas que enlacen a este archivo.
Uso global del archivo
Las wikis siguientes utilizan este archivo:
- Uso en ar.wikipedia.org
- Uso en ca.wikipedia.org
- Uso en de.wikipedia.org
- Uso en en.wikipedia.org
- Uso en es.wikipedia.org
- Uso en fa.wikipedia.org
- Uso en fr.wikipedia.org
- Uso en it.wikipedia.org
- Uso en ja.wikipedia.org
- Uso en ko.wikipedia.org
- Uso en nl.wikipedia.org
- Uso en sv.wikipedia.org
- Uso en tr.wikipedia.org
- Uso en zh.wikipedia.org