Skip to content

Commit

Permalink
Fix more Javadoc errors in inline gov.nist.math:Jampack sources
Browse files Browse the repository at this point in the history
  • Loading branch information
psibre committed Oct 4, 2024
1 parent 574fe82 commit 779170e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ MaryTTS
* Lock down Java compatibility to 1.8
* Reduce non-API dependency leakage (particularly `groovy-all`)
* Dependency resolution errors following JCenter shutdown
* Javadoc errors in legacy, third-party code

### Removed

Expand Down
4 changes: 2 additions & 2 deletions marytts-signalproc/src/main/java/Jampack/Eye.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
public class Eye{

/**
Generates an identity matrix of order <tt>n</tt>.
Generates an identity matrix of order <code>n</code>.
@param n The order of the matrx
*/
public static Zmat o(int n){
return o(n, n);
}

/**
Generates an <tt>mxn</tt> matrix whose diagonal elements are
Generates an <code>mxn</code> matrix whose diagonal elements are
one and whose off diagonal elements are zero.
@param m The number of rows in the matrix
@param n The number of columns in the matrix
Expand Down
6 changes: 3 additions & 3 deletions marytts-signalproc/src/main/java/Jampack/Print.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,15 +238,15 @@ public static void o(Z[] a, int w, int d){
}

/**
Prints a 2-dimensional array of <tt>Z</tt> in default e format.
Prints a 2-dimensional array of <code>Z</code> in default e format.
*/

public static void o(Z[][] A){
o(A, Parameters.OutputFieldWidth, Parameters.OutputFracPlaces);
}

/**
Prints a 2-dimensional array of <tt>Z</tt> in w.d e format.
Prints a 2-dimensional array of <code>Z</code> in w.d e format.
*/

public static void o(Z[][] A, int w, int d){
Expand Down Expand Up @@ -341,7 +341,7 @@ public static void o(Z1 z, int w, int d){
}

/**
Prints a <tt>Zmat</tt> in default e format.
Prints a <code>Zmat</code> in default e format.
*/
public static void o(Zmat A){
o(A, Parameters.OutputFieldWidth, Parameters.OutputFracPlaces);
Expand Down
4 changes: 2 additions & 2 deletions marytts-signalproc/src/main/java/Jampack/Zdiagmat.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public Z get(int ii){
}

/**
Gets the <tt>i</tt>th diagonal of a of a Zdiagmat
Gets the <code>i</code>th diagonal of a of a Zdiagmat
(0-based).
*/

Expand All @@ -217,7 +217,7 @@ public void put(int ii, Z val){
}

/**
Writes the <tt>i</tt>th diagonal element of a Zdiagmat
Writes the <code>i</code>th diagonal element of a Zdiagmat
(0-based).
*/

Expand Down

0 comments on commit 779170e

Please sign in to comment.