Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

How to add with a Matrix

2 views (last 30 days)
John Woods
John Woods on 19 Jun 2020
Closed: MATLAB Answer Bot on 20 Aug 2021
I have a 1x276 matrix that I want to add 1 to each element but each time I do, my matrix turns to all ones. So for example lets say A=[32 45 96] and I want to make it B=[33 46 97] how do I do that?

Answers (1)

Walter Roberson
Walter Roberson on 19 Jun 2020
Edited: Walter Roberson on 19 Jun 2020
B = A + 1
or
B = A;
for idx = 1 : numel(B)
B(idx) = B(idx) + 1;
end

This question is closed.

Community Treasure Hunt

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

Start Hunting!