MCPcopy Index your code
hub / github.com/aimacode/aima-java / get

Method get

aima-core/src/main/java/aima/core/util/math/Matrix.java:342–344  ·  view source on GitHub ↗

Get a single element. @param i Row index. @param j Column index. @return A(i,j) @exception ArrayIndexOutOfBoundsException

(int i, int j)

Source from the content-addressed store, hash-verified

340 */
341
342 public double get(int i, int j) {
343 return A[i][j];
344 }
345
346 /**
347 * Get a submatrix.

Calls

no outgoing calls