This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Solve heat equation using Explicit Method | |
(du / dt) = c^2 (d^2u / dx^2) | |
Boundary Conditions: | |
* u(0, t) = 0, t >= 0 | |
* u(L, t) = 0, t >= 0 | |
Initial Conditions: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.* |
1.- Theory and Applications of Kernel Space
2.- 8-1. Reproducing Kernel Hilbert Space I: Basic Definitions
- Really good examples to learn Reproducing Property.
- The slides are awesome but the lecture is in Chinese.
- http://en.wikipedia.org/wiki/Shallow_water_equations
- http://kiwi.atmos.colostate.edu/group/dave/pdf/ShallowWater.pdf
- http://users.ices.utexas.edu/~arbogast/cam397/dawson_v2.pdf
- http://www.tesis.uchile.cl/bitstream/handle/2250/113116/cf-fuentes_ms.pdf?sequence=1
- http://www.mathematik.tu-dortmund.de/lsiii/cms/papers/Kuehbacher2009.pdf
- Theory of Reproducing Kernels http://www.math.drexel.edu/~tolya/Aronszajn_RKHS.pdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
FILE_NAME="" | |
# /screen selects low-resolution output similar to the Acrobat Distiller "Screen Optimized" setting. | |
# /ebook selects medium-resolution output similar to the Acrobat Distiller "eBook" setting. | |
# /printer selects output similar to the Acrobat Distiller "Print Optimized" setting. | |
# /prepress selects output similar to Acrobat Distiller "Prepress Optimized" setting. | |
# /default selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file. | |
PDF_SETTINGS="/ebook" |