MATLAB: How to apply summation to one element of a matrix

matrix

If I have a matrix A that is 3×3 and I want to add a number to element A(3,3) only, how can I do that?

Best Answer

Omar, use
A(3,3) = A(3,3) + num;
Related Question