Skip to content

Commit d591956

Browse files
committed
add missing @since Javadoc tags
1 parent c40a863 commit d591956

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/main/java/net/jamu/matrix/TensorD.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,7 @@ public TensorD shuffle(long seed) {
806806
* @param upperBound
807807
* the maximum value of an element after rescaling
808808
* @return this tensor with all elements rescaled in-place
809+
* @since 1.4.1
809810
*/
810811
public TensorD rescaleInplace(double lowerBound, double upperBound) {
811812
double[] _a = a;

src/main/java/net/jamu/matrix/TensorF.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,7 @@ public TensorF shuffle(long seed) {
806806
* @param upperBound
807807
* the maximum value of an element after rescaling
808808
* @return this tensor with all elements rescaled in-place
809+
* @since 1.4.1
809810
*/
810811
public TensorF rescaleInplace(float lowerBound, float upperBound) {
811812
float[] _a = a;

0 commit comments

Comments
 (0)