Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for assertDiagonalLinearTransformation (0.55 sec)

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

        assertDiagonalLinearTransformation(
            twoValuesAccumulator.leastSquaresFit(),
            twoValuesAccumulator.xStats().mean(),
            twoValuesAccumulator.yStats().mean(),
            twoValuesAccumulator.xStats().populationVariance(),
            twoValuesAccumulator.populationCovariance());
        assertDiagonalLinearTransformation(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/LinearTransformationTest.java

     * See the License for the specific language governing permissions and
     * 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;
    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. guava-tests/test/com/google/common/math/LinearTransformationTest.java

     * See the License for the specific language governing permissions and
     * 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;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

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

       * {@code transformation} and its inverse). Since the transformation is expected to be diagonal,
       * neither {@code xDelta} nor {@code yDelta} may be zero.
       */
      static void assertDiagonalLinearTransformation(
          LinearTransformation transformation, double x1, double y1, double xDelta, double yDelta) {
        checkArgument(xDelta != 0.0);
        checkArgument(yDelta != 0.0);
    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