Skip to content

Commit

Permalink
Merge pull request peterbraden#635 from flyashi/patch-1
Browse files Browse the repository at this point in the history
Fix off-by-one error in README
  • Loading branch information
peterbraden authored Mar 20, 2019
2 parents 5a2317d + 51408f9 commit bec64ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ var mat = new cv.Matrix.Eye(4,4); // Create identity matrix
mat.get(0,0) // 1

mat.row(0) // [1,0,0,0]
mat.col(4) // [0,0,0,1]
mat.col(3) // [0,0,0,1]
```

##### Save
Expand Down

0 comments on commit bec64ba

Please # to comment.