Making a augmented matrix in matlab, and reduced row echelon form

Augment matrices in Matlab using commas to put to the right and semi-colons to put below (similar to how you define matrices to begin with).

combined = [A,b]; % b is to the right of A

Leave a Comment