mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-12 14:25:16 +08:00
Fix bug #925: typo in MatLab versions of middleRows
(grafted from db5b0741b5
)
This commit is contained in:
parent
8efa5bb439
commit
8638dbb809
@ -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