I've got a matrix in Matlab that looks something like this;
A =
1 2 3 4
5 7 8 9
10 11 12 13
How can I change the matrix so that the entrie first row is set to a specific value? So that it becomes this;
A =
2 2 2 2
5 7 8 9
10 11 12 13