Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for assertHorizontalLinearTransformation (0.27 sec)

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

     * limitations under the License.
     */
    
    package com.google.common.math;
    
    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;
    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)
  2. android/guava-tests/test/com/google/common/math/LinearTransformationTest.java

     * limitations under the License.
     */
    
    package com.google.common.math;
    
    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;
    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)
  3. guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

                accumulatorByAddAllPartitionedPairedStats.populationCovariance());
          }
        }
        assertHorizontalLinearTransformation(
            horizontalValuesAccumulator.leastSquaresFit(), horizontalValuesAccumulator.yStats().mean());
        assertHorizontalLinearTransformation(
            horizontalValuesAccumulatorByAddAllPartitionedPairedStats.leastSquaresFit(),
    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)
  4. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

                accumulatorByAddAllPartitionedPairedStats.populationCovariance());
          }
        }
        assertHorizontalLinearTransformation(
            horizontalValuesAccumulator.leastSquaresFit(), horizontalValuesAccumulator.yStats().mean());
        assertHorizontalLinearTransformation(
            horizontalValuesAccumulatorByAddAllPartitionedPairedStats.leastSquaresFit(),
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/math/PairedStatsTest.java

    import static com.google.common.math.StatsTesting.VERTICAL_VALUES_PAIRED_STATS;
    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;
    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.VERTICAL_VALUES_PAIRED_STATS;
    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;
    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

       * assertion that {@link LinearTransformation#transform} and {@link LinearTransformation#slope} on
       * its inverse throws as expected.
       */
      static void assertHorizontalLinearTransformation(LinearTransformation transformation, double y) {
        assertThat(transformation.isHorizontal()).isTrue();
        assertThat(transformation.isVertical()).isFalse();
    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. guava-tests/test/com/google/common/math/StatsTesting.java

       * assertion that {@link LinearTransformation#transform} and {@link LinearTransformation#slope} on
       * its inverse throws as expected.
       */
      static void assertHorizontalLinearTransformation(LinearTransformation transformation, double y) {
        assertThat(transformation.isHorizontal()).isTrue();
        assertThat(transformation.isVertical()).isFalse();
    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