Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LinearTransformation (0.06 sec)

  1. android/guava/src/com/google/common/math/LinearTransformation.java

       * always return that original instance.
       */
      public abstract LinearTransformation inverse();
    
      private static final class RegularLinearTransformation extends LinearTransformation {
    
        final double slope;
        final double yIntercept;
    
        @LazyInit @Nullable LinearTransformation inverse;
    
        RegularLinearTransformation(double slope, double yIntercept) {
          this.slope = slope;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/PairedStats.java

        }
        double xSumOfSquaresOfDeltas = xStats.sumOfSquaresOfDeltas();
        if (xSumOfSquaresOfDeltas > 0.0) {
          if (yStats.sumOfSquaresOfDeltas() > 0.0) {
            return LinearTransformation.mapping(xStats.mean(), yStats.mean())
                .withSlope(sumOfProductsOfDeltas / xSumOfSquaresOfDeltas);
          } else {
            return LinearTransformation.horizontal(yStats.mean());
          }
        } else {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top