how to add a constant to all the elements of the matrix?

582 views (last 30 days)
plz help, how to add or multiply a constant value to all the elements of the matrix...

Answers (1)

Star Strider
Star Strider on 1 May 2018
Since ‘implicit expansion’ arrived in R2016b, this will work:
A = rand(3);
B = A + 5;
or:
B = A * 5;
For all releases, using bsxfun will work:
B = bsxfun(@plus, A, 5);
or:
B = bsxfun(@times, A, 5);

Categories

Find more on Operators and Elementary Operations in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!