- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isHorizontal (0.84 sec)
-
android/guava/src/com/google/common/math/LinearTransformation.java
checkArgument(isFinite(y)); double slope = 0.0; return new RegularLinearTransformation(slope, y); } /** * Builds an instance for datasets which contains {@link Double#NaN}. The {@link #isHorizontal} * and {@link #isVertical} methods return {@code false} and the {@link #slope}, and {@link * #transform} methods all return {@link Double#NaN}. The {@link #inverse} method returns the same * instance. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/LinearTransformationTest.java
double slope = Double.MIN_VALUE; LinearTransformation transformation = LinearTransformation.mapping(x1, y1).withSlope(slope); assertThat(transformation.isVertical()).isFalse(); assertThat(transformation.isHorizontal()).isFalse(); assertThat(transformation.slope()).isWithin(ALLOWED_ERROR).of(slope); // Note that we cannot test the actual mapping of points, as the results will be unreliable due
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 7.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LinearTransformationTest.java
double slope = Double.MIN_VALUE; LinearTransformation transformation = LinearTransformation.mapping(x1, y1).withSlope(slope); assertThat(transformation.isVertical()).isFalse(); assertThat(transformation.isHorizontal()).isFalse(); assertThat(transformation.slope()).isWithin(ALLOWED_ERROR).of(slope); // Note that we cannot test the actual mapping of points, as the results will be unreliable due
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 7.1K bytes - Viewed (0)