source:
liacs/la/opdr2/rowcombine.m@
159
Last change on this file since 159 was 2, checked in by , 15 years ago | |
---|---|
File size: 213 bytes |
Rev | Line | |
---|---|---|
[2] | 1 | function B = rowcombine(A,i,j,k) |
2 | % ROWCOMBINE | |
3 | % Makes a new matrix B by replacing row i of A with | |
4 | % (row i of A) + k * (row j of A) | |
5 | B = A; | |
6 | B(i,:) = A(i,:) + k * A(j,:); | |
7 |
Note:
See TracBrowser
for help on using the repository browser.