Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for vertical (0.23 sec)

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

      }
    
      /** Returns whether this is a vertical transformation. */
      public abstract boolean isVertical();
    
      /** Returns whether this is a horizontal transformation. */
      public abstract boolean isHorizontal();
    
      /**
       * Returns the slope of the transformation, i.e. the rate of change of {@code y} with respect to
       * {@code x}. This must not be called on a vertical transformation (i.e. when {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

       * xStats().populationVariance() > 0.0 || yStats().populationVariance() > 0.0}). The result is
       * guaranteed to be horizontal if there is variance in the {@code x} data but not the {@code y}
       * data, and vertical if there is variance in the {@code y} data but not the {@code x} data.
       *
       * <p>This fit minimizes the root-mean-square error in {@code y} as a function of {@code x}. This
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/LinearTransformationTest.java

        double x = 1.2;
        LinearTransformation transformation = LinearTransformation.vertical(x);
        assertVerticalLinearTransformation(transformation, x);
      }
    
      public void testVertical_infiniteX() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.vertical(Double.NEGATIVE_INFINITY));
      }
    
      public void testVertical_nanX() {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/LinearTransformationTest.java

        double x = 1.2;
        LinearTransformation transformation = LinearTransformation.vertical(x);
        assertVerticalLinearTransformation(transformation, x);
      }
    
      public void testVertical_infiniteX() {
        assertThrows(
            IllegalArgumentException.class,
            () -> LinearTransformation.vertical(Double.NEGATIVE_INFINITY));
      }
    
      public void testVertical_nanX() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/math/PairedStatsTest.java

            HORIZONTAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            HORIZONTAL_VALUES_PAIRED_STATS.yStats().mean());
        assertVerticalLinearTransformation(
            VERTICAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            VERTICAL_VALUES_PAIRED_STATS.xStats().mean());
        assertThrows(IllegalStateException.class, () -> CONSTANT_VALUES_PAIRED_STATS.leastSquaresFit());
      }
    
      public void testEqualsAndHashCode() {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

            HORIZONTAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            HORIZONTAL_VALUES_PAIRED_STATS.yStats().mean());
        assertVerticalLinearTransformation(
            VERTICAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            VERTICAL_VALUES_PAIRED_STATS.xStats().mean());
        assertThrows(IllegalStateException.class, () -> CONSTANT_VALUES_PAIRED_STATS.leastSquaresFit());
      }
    
      public void testEqualsAndHashCode() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/StatsTesting.java

        checkArgument(xDelta != 0.0);
        checkArgument(yDelta != 0.0);
        assertThat(transformation.isHorizontal()).isFalse();
        assertThat(transformation.isVertical()).isFalse();
        assertThat(transformation.inverse().isHorizontal()).isFalse();
        assertThat(transformation.inverse().isVertical()).isFalse();
        assertThat(transformation.transform(x1)).isWithin(ALLOWED_ERROR).of(y1);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/PairedStats.java

       * xStats().populationVariance() > 0.0 || yStats().populationVariance() > 0.0}). The result is
       * guaranteed to be horizontal if there is variance in the {@code x} data but not the {@code y}
       * data, and vertical if there is variance in the {@code y} data but not the {@code x} data.
       *
       * <p>This fit minimizes the root-mean-square error in {@code y} as a function of {@code x}. This
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/math/StatsTesting.java

        checkArgument(xDelta != 0.0);
        checkArgument(yDelta != 0.0);
        assertThat(transformation.isHorizontal()).isFalse();
        assertThat(transformation.isVertical()).isFalse();
        assertThat(transformation.inverse().isHorizontal()).isFalse();
        assertThat(transformation.inverse().isVertical()).isFalse();
        assertThat(transformation.transform(x1)).isWithin(ALLOWED_ERROR).of(y1);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 23.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Ascii.java

       */
      public static final byte LF = 10;
    
      /**
       * Alternate name for {@link #LF}. ({@code LF} is preferred.)
       *
       * @since 8.0
       */
      public static final byte NL = 10;
    
      /**
       * Vertical Tabulation ('\v'): A format effector which controls the movement of the printing
       * position to the next in a series of predetermined printing lines. (Applicable also to display
       * devices.)
       *
       * @since 8.0
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
Back to top