Create a nxn matrix with the same values

52 views (last 30 days)
Hi all, Is there other methods to create an nxn matrix with the same values? I found a method which is
B(1:9, 1:9) = 3
that is perfect but, there is a different method?

Accepted Answer

Rick Rosson
Rick Rosson on 25 Feb 2015
B = 3*ones(9);
  2 Comments
AnnaMaria Accardo
AnnaMaria Accardo on 25 Feb 2015
ah! So easy? Sorry. I'm too stupid...
Gangadhar Venkata Ramana
Gangadhar Venkata Ramana on 7 Aug 2021
I have been trying to multiply a scalar value to 2D matix inside the batch parallel processing.
I am unable to scale the matrix with the scalar value. An error showing, matix dimensions must agree.
Kindly suggest a solution.
Thank you

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB 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!