Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for assertVerticalLinearTransformation (0.39 sec)

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

    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;
    
    import junit.framework.TestCase;
    
    /**
     * Tests for {@link LinearTransformation}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/LinearTransformationTest.java

    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;
    
    import junit.framework.TestCase;
    
    /**
     * Tests for {@link LinearTransformation}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

            horizontalValuesAccumulatorByAddAllPartitionedPairedStats.yStats().mean());
        assertVerticalLinearTransformation(
            verticalValuesAccumulator.leastSquaresFit(), verticalValuesAccumulator.xStats().mean());
        assertVerticalLinearTransformation(
            verticalValuesAccumulatorByAddAllPartitionedPairedStats.leastSquaresFit(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

    import static com.google.common.math.StatsTesting.assertLinearTransformationNaN;
    import static com.google.common.math.StatsTesting.assertStatsApproxEqual;
    import static com.google.common.math.StatsTesting.assertVerticalLinearTransformation;
    import static com.google.common.math.StatsTesting.createPairedStatsOf;
    import static com.google.common.truth.Truth.assertThat;
    import static com.google.common.truth.Truth.assertWithMessage;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/StatsTesting.java

       * assertions that {@link LinearTransformation#slope} and {@link LinearTransformation#transform}
       * throw as expected.
       */
      static void assertVerticalLinearTransformation(LinearTransformation transformation, double x) {
        assertThat(transformation.isHorizontal()).isFalse();
        assertThat(transformation.isVertical()).isTrue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top