Effacer les filtres
Effacer les filtres

Is it possible to assign multiple variables to one number?

98 vues (au cours des 30 derniers jours)
Shawn Simon
Shawn Simon le 4 Nov 2015
For example, is there a much more efficient way of doing this:
a = 0;
b = 0;
c = 0;
And so on; essentially, I am trying to set a-z equal to 0. I am just trying to make my script seem less long. Thank you for the help.

Réponse acceptée

Jan
Jan le 7 Nov 2015
If you really have 26 variables with a single charater name 'a' to 'z' which are all scalars, use one vector:
a = zeros(1, 26);
and a(2) instead of b.

Plus de réponses (2)

Walter Roberson
Walter Roberson le 6 Nov 2015
[a, b, c] = deal(0);
  2 commentaires
Ale Kat
Ale Kat le 21 Juil 2019
excellent
Pedro Cabrera Santana
Pedro Cabrera Santana le 13 Juin 2023
great answer!

Connectez-vous pour commenter.


Bharath Rangaswamy
Bharath Rangaswamy le 6 Nov 2015
Hi Shawn,
There is no way to assign multiple variables to one number.
Best,
Bharath

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by