Double = in one line of code

Can I define a=b=c in one line of code in matlab? if yes what is the syntax?
I do not want to define in double section like a=b; c=b;

Respuestas (2)

Andrei Bobrov
Andrei Bobrov el 13 de Ag. de 2019

2 votos

b = 1000;
zz = {b};
[a,c] = zz{[1,1]};

1 comentario

Rik
Rik el 13 de Ag. de 2019
Nice hack, although I think deal is more clear when reading the code. I didn't know this syntax also generated a comma-separated list like {:} does.

Iniciar sesión para comentar.

Categorías

Etiquetas

Preguntada:

el 13 de Ag. de 2019

Comentada:

el 13 de Ag. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by