How can I set multiple variables to the same initial value efficiently?

117 views (last 30 days)
I hate using the following way of defining variables;
a= 5, b=a, c=a, d=a, etc
I have a lot of variable taking the same intial value, how can do it efficiently?
Thanks in advance!
  1 Comment
Stephen23
Stephen23 on 6 Dec 2018
"I have a lot of variable taking the same intial value, how can do it efficiently?"
Simple: store your data in one array.
Having "a lot of variables" is a sign that you should be using arrays anyway.

Sign in to comment.

Accepted Answer

madhan ravi
madhan ravi on 6 Dec 2018
[a,b,c,d]=deal(5)

More Answers (1)

Anteneh Zewdu
Anteneh Zewdu on 6 Dec 2018
I found the answer from a friend
[a, b, c, d] = deal(5)
  3 Comments

Sign in to comment.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!