|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<LocalDiffusionKernel.Stencil>
edu.mines.jtk.dsp.LocalDiffusionKernel.Stencil
public static enum LocalDiffusionKernel.Stencil
The stencil used in finite-difference approximation of derivatives. In each stencil name, the first digit equals the number of samples used in the direction of the derivative, and the second digit equals the number of samples in the orthogonal direction. Names correspond to 2D stencils, but each has a natural 3D extension.
Note that the stencil implied by G'DG is larger than that used to approximate the derivatives in G. For example, a 2x2 derivative approximation implies a 3x3 stencil for G'DG.
| Enum Constant Summary | |
|---|---|
D22
A 2x2 stencil. |
|
D24
A 2x4 stencil. |
|
D33
A 3x3 stencil. |
|
D71
A 7x1 stencil. |
|
D91
A 9x1 stencil. |
|
| Method Summary | |
|---|---|
static LocalDiffusionKernel.Stencil |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LocalDiffusionKernel.Stencil[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final LocalDiffusionKernel.Stencil D22
public static final LocalDiffusionKernel.Stencil D24
public static final LocalDiffusionKernel.Stencil D33
public static final LocalDiffusionKernel.Stencil D71
public static final LocalDiffusionKernel.Stencil D91
| Method Detail |
|---|
public static LocalDiffusionKernel.Stencil[] values()
for (LocalDiffusionKernel.Stencil c : LocalDiffusionKernel.Stencil.values()) System.out.println(c);
public static LocalDiffusionKernel.Stencil valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||