mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-18 14:34:17 +08:00
Fix bug #925: typo in MatLab versions of middleRows
This commit is contained in:
parent
f5f6e2c6f4
commit
db5b0741b5
@ -67,10 +67,10 @@ P.rightCols<cols>() // P(:, end-cols+1:end)
|
||||
P.rightCols(cols) // P(:, end-cols+1:end)
|
||||
P.topRows<rows>() // P(1:rows, :)
|
||||
P.topRows(rows) // P(1:rows, :)
|
||||
P.middleRows<rows>(i) // P(:, i+1:i+rows)
|
||||
P.middleRows(i, rows) // P(:, i+1:i+rows)
|
||||
P.bottomRows<rows>() // P(:, end-rows+1:end)
|
||||
P.bottomRows(rows) // P(:, end-rows+1:end)
|
||||
P.middleRows<rows>(i) // P(i+1:i+rows, :)
|
||||
P.middleRows(i, rows) // P(i+1:i+rows, :)
|
||||
P.bottomRows<rows>() // P(end-rows+1:end, :)
|
||||
P.bottomRows(rows) // P(end-rows+1:end, :)
|
||||
P.topLeftCorner(rows, cols) // P(1:rows, 1:cols)
|
||||
P.topRightCorner(rows, cols) // P(1:rows, end-cols+1:end)
|
||||
P.bottomLeftCorner(rows, cols) // P(end-rows+1:end, 1:cols)
|
||||
|
Loading…
Reference in New Issue
Block a user