From 39ac57fa6ddf9a74d9a6cc213293914d2e05ec31 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 4 Jan 2010 21:24:43 -0500 Subject: Big renaming: start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day. --- doc/AsciiQuickReference.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/AsciiQuickReference.txt') diff --git a/doc/AsciiQuickReference.txt b/doc/AsciiQuickReference.txt index 6c1c4fbd8..86f77a66b 100644 --- a/doc/AsciiQuickReference.txt +++ b/doc/AsciiQuickReference.txt @@ -41,8 +41,8 @@ A.setIdentity(); // Fill A with the identity. // Eigen // Matlab x.start(n) // x(1:n) x.start() // x(1:n) -x.end(n) // N = rows(x); x(N - n: N) -x.end() // N = rows(x); x(N - n: N) +x.tail(n) // N = rows(x); x(N - n: N) +x.tail() // N = rows(x); x(N - n: N) x.segment(i, n) // x(i+1 : i+n) x.segment(i) // x(i+1 : i+n) P.block(i, j, rows, cols) // P(i+1 : i+rows, j+1 : j+cols) -- cgit v1.2.3