User talk:Pzgesvd: Difference between revisions
Jump to navigation
Jump to search
(delete lines from files using sed) |
|||
Line 17: | Line 17: | ||
DSSRFT --- RUP2 | DSSRFT --- RUP2 | ||
== delete lines from files using sed == | |||
sed -ie '1,11d' dgetrf.c | |||
example by [http://www.ibm.com/developerworks/linux/library/l-sed1.html] |
Revision as of 18:18, 3 September 2008
bidiagonal reduction code function matching
DGEQRT --- LQR1
DTSQRT --- LQR2
DLARTB --- LUP1
DSSRFT --- LUP2
DGEQRT --- RQR1
DTSQRT --- RQR2
DLARTB --- RUP1
DSSRFT --- RUP2
delete lines from files using sed
sed -ie '1,11d' dgetrf.c
example by [1]