Skip to content
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.

Commit

Permalink
cmat128: rename (r,c) params to (i,j)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-ch committed Feb 1, 2016
1 parent 5cff683 commit ff82711
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmat128/matrix.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ type Matrix interface {
// Dims returns the dimensions of a Matrix.
Dims() (r, c int)

// At returns the value of a matrix element at (r, c). It will panic if r or c are
// out of bounds for the matrix.
At(r, c int) complex128
// At returns the value of a matrix element at row i, column j.
// It will panic if i or j are out of bounds for the matrix.
At(i, j int) complex128

// T returns the transpose of the Matrix. Whether T returns a copy of the
// underlying data is implementation dependent.
Expand Down

0 comments on commit ff82711

Please sign in to comment.