from
simplex tableau and Matlab
by Chun Zheng
Solving the simplex tableau using matlab
|
| newMat=multMat(mat,row,mult)
|
function newMat=multMat(mat,row,mult)
%multiply a row of a matrix by a nonzero constant
mat(row,:)=mat(row,:)*mult;
newMat=mat;
|
|
Contact us at files@mathworks.com