Uses of Interface
edu.mines.jtk.dsp.Tensors2

Packages that use Tensors2
edu.mines.jtk.dsp Digital signal processing. 
edu.mines.jtk.interp Interpolation and gridding of scattered (irregularly sampled) data. 
 

Uses of Tensors2 in edu.mines.jtk.dsp
 

Classes in edu.mines.jtk.dsp that implement Tensors2
 class EigenTensors2
          An array of eigen-decompositions of tensors for 2D image processing.
 

Methods in edu.mines.jtk.dsp with parameters of type Tensors2
 void LocalSmoothingFilter.apply(Tensors2 d, float[][] x, float[][] y)
          Applies this filter for specified tensor coefficients.
 void LocalLaplacianFilter.apply(Tensors2 d, float[][] x, float[][] y)
          Computes y = y+G'DGx for 2D arrays x and y.
 void LocalDiffusionKernel.apply(Tensors2 d, float[][] x, float[][] y)
          Applies this filter for specified tensor coefficients.
 void LocalSmoothingFilter.apply(Tensors2 d, float c, float[][] x, float[][] y)
          Applies this filter for specified tensor coefficients and scale factor.
 void LocalDiffusionKernel.apply(Tensors2 d, float c, float[][] x, float[][] y)
          Applies this filter for specified tensor coefficients and scale factor.
 void LocalSmoothingFilter.apply(Tensors2 d, float c, float[][] s, float[][] x, float[][] y)
          Applies this filter for specified tensor coefficients and scale factors.
 void LocalDiffusionKernel.apply(Tensors2 d, float c, float[][] s, float[][] x, float[][] y)
          Applies this filter for specified tensor coefficients and scale factors.
 

Uses of Tensors2 in edu.mines.jtk.interp
 

Methods in edu.mines.jtk.interp with parameters of type Tensors2
 void BlendedGridder2.setTensors(Tensors2 tensors)
          Sets the tensor field used by this gridder.
 

Constructors in edu.mines.jtk.interp with parameters of type Tensors2
BlendedGridder2(Tensors2 tensors)
          Constructs a gridder for the specified tensors.
BlendedGridder2(Tensors2 tensors, float[] f, float[] x1, float[] x2)
          Constructs a gridder for the specified tensors and samples.