Skip to content

Commit

Permalink
add missing @since Javadoc tags
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-zobel committed Nov 4, 2023
1 parent c40a863 commit d591956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/net/jamu/matrix/TensorD.java
Original file line number Diff line number Diff line change
Expand Up @@ -806,6 +806,7 @@ public TensorD shuffle(long seed) {
* @param upperBound
* the maximum value of an element after rescaling
* @return this tensor with all elements rescaled in-place
* @since 1.4.1
*/
public TensorD rescaleInplace(double lowerBound, double upperBound) {
double[] _a = a;
Expand Down
1 change: 1 addition & 0 deletions src/main/java/net/jamu/matrix/TensorF.java
Original file line number Diff line number Diff line change
Expand Up @@ -806,6 +806,7 @@ public TensorF shuffle(long seed) {
* @param upperBound
* the maximum value of an element after rescaling
* @return this tensor with all elements rescaled in-place
* @since 1.4.1
*/
public TensorF rescaleInplace(float lowerBound, float upperBound) {
float[] _a = a;
Expand Down

0 comments on commit d591956

Please sign in to comment.