Adding a single number to an entire matrix
84 views (last 30 days)
Show older comments
How do you add a single number to each element within a matrix?
i.e.
a = 5
b = (1,2,3;4,5,6;7,8,9)
c = a + b
0 Comments
Answers (1)
Star Strider
on 13 May 2021
Exactly as you wrote it!
a = 5
b = [1,2,3;4,5,6;7,8,9]
c = a + b
Use square brackets [] to code vectors and matrices.
5 Comments
Walter Roberson
on 4 Feb 2023
What is
size(s_combined_projected_tc_and_predicted_sw)
size(s_get_projected_MMSL)
at the time of the problem?
David Ebert
on 4 Feb 2023
Edited: David Ebert
on 4 Feb 2023
Oh, I have made a mistake. I'm sorry. One of the values was not found, giving an empty vector, no wonder.
See Also
Categories
Find more on Creating and Concatenating Matrices 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!