Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for assertLinearTransformationNaN (0.25 sec)

  1. guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

          LinearTransformation fitByAddAllPartitionedPairedStats =
              accumulatorByAddAllPartitionedPairedStats.leastSquaresFit();
          if (values.hasAnyNonFinite()) {
            assertLinearTransformationNaN(fit);
            assertLinearTransformationNaN(fitByAddAllPartitionedPairedStats);
          } else {
            assertDiagonalLinearTransformation(
                fit,
                accumulator.xStats().mean(),
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

          LinearTransformation fitByAddAllPartitionedPairedStats =
              accumulatorByAddAllPartitionedPairedStats.leastSquaresFit();
          if (values.hasAnyNonFinite()) {
            assertLinearTransformationNaN(fit);
            assertLinearTransformationNaN(fitByAddAllPartitionedPairedStats);
          } else {
            assertDiagonalLinearTransformation(
                fit,
                accumulator.xStats().mean(),
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/LinearTransformationTest.java

    import static com.google.common.math.StatsTesting.assertDiagonalLinearTransformation;
    import static com.google.common.math.StatsTesting.assertHorizontalLinearTransformation;
    import static com.google.common.math.StatsTesting.assertLinearTransformationNaN;
    import static com.google.common.math.StatsTesting.assertVerticalLinearTransformation;
    import static com.google.common.truth.Truth.assertThat;
    import static org.junit.Assert.assertThrows;
    
    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

    import static com.google.common.math.StatsTesting.assertDiagonalLinearTransformation;
    import static com.google.common.math.StatsTesting.assertHorizontalLinearTransformation;
    import static com.google.common.math.StatsTesting.assertLinearTransformationNaN;
    import static com.google.common.math.StatsTesting.assertVerticalLinearTransformation;
    import static com.google.common.truth.Truth.assertThat;
    import static org.junit.Assert.assertThrows;
    
    Java
    - Registered: Fri Apr 26 12:43:10 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

    import static com.google.common.math.StatsTesting.assertDiagonalLinearTransformation;
    import static com.google.common.math.StatsTesting.assertHorizontalLinearTransformation;
    import static com.google.common.math.StatsTesting.assertLinearTransformationNaN;
    import static com.google.common.math.StatsTesting.assertStatsApproxEqual;
    import static com.google.common.math.StatsTesting.assertVerticalLinearTransformation;
    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

    import static com.google.common.math.StatsTesting.assertDiagonalLinearTransformation;
    import static com.google.common.math.StatsTesting.assertHorizontalLinearTransformation;
    import static com.google.common.math.StatsTesting.assertLinearTransformationNaN;
    import static com.google.common.math.StatsTesting.assertStatsApproxEqual;
    import static com.google.common.math.StatsTesting.assertVerticalLinearTransformation;
    Java
    - Registered: Fri Apr 26 12:43:10 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

      }
    
      /**
       * Asserts that {@code transformation} behaves as expected for {@link
       * LinearTransformation#forNaN}.
       */
      static void assertLinearTransformationNaN(LinearTransformation transformation) {
        assertThat(transformation.isHorizontal()).isFalse();
        assertThat(transformation.isVertical()).isFalse();
        assertThat(transformation.slope()).isNaN();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/math/StatsTesting.java

      }
    
      /**
       * Asserts that {@code transformation} behaves as expected for {@link
       * LinearTransformation#forNaN}.
       */
      static void assertLinearTransformationNaN(LinearTransformation transformation) {
        assertThat(transformation.isHorizontal()).isFalse();
        assertThat(transformation.isVertical()).isFalse();
        assertThat(transformation.slope()).isNaN();
    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)
Back to top