📄 rowcomb.m
字号:
function B=rowcomb(A,i,j,c)
% The command rowcomb(A,i,j,c) forms a matrix
% from A by adding c times the ith row of A
% to the jth row.
[m,n]=size(A);
if i<1|i>m|j<1|j>m
error('Index out of range')
end
if i==j
error('Illegal row operation')
end
B=A;
B(j,:)=c*A(i,:)+A(j,:);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -