Augmented matrix
Title
Question
Dear Sir,
How to add a new column to an existing matrix
Scilab Matrix-Operations 10-11 min 0-10 sec
Answers:
If you want to add the column "b" to the right side of the matrix "E" and call the augmented matrix as F, give the following command:
F = [E b]
You have to make sure that the number of rows is the same for both E and b in the above.
Login to add comment