📄 add.m
字号:
function A=add(A)
%ADD
%Add multiple of one row of a matrix to another row.
%Used in row reduction.
%Calling format: A=add(A)
%Copyright Gareth Williams, Stetson University
%gwilliam@stetson.edu, http://www.stetson.edu/~gwilliam
%Accompanies "Linear Algebra with Applications" by Gareth Williams
disp(' ')
a=input('add the multiple: ');
m=input(' of row: ');
n=input(' to row: ');
A(n,:) = A(n,:) + a*A(m,:);
disp(' ')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -