>> A=[1 2 0 4;3 -1 1 2;0 2 0 -1];
>> B=[2;1;-1;3];
>> C=[2 1 1];
The (i,j)th element of a matrix can also be assigned or changed
individually. For example, the command A(2,3)=0 replaces
the element at the second row and the third column of matrix A by 0.