What does this line really do?

2 visualizaciones (últimos 30 días)
vimal kumar chawda
vimal kumar chawda el 6 de Dic. de 2021
Respondida: David Hill el 6 de Dic. de 2021
a(1,a == 1) = -1;
a(1,a == 0) = 1;
I am not sure what does this line really do? Can someone explain to me?
2- Does anyone know the function of correlation, auto and cross? I want to build smooth function.
  2 comentarios
dpb
dpb el 6 de Dic. de 2021
  1. Create a test a array of integer values including at least some ones and zeros and test it
  2. Read the documentation, first.
vimal kumar chawda
vimal kumar chawda el 6 de Dic. de 2021
Which documents?

Iniciar sesión para comentar.

Respuesta aceptada

David Hill
David Hill el 6 de Dic. de 2021
Look at what this does.
a=randi(2,1,20)-1
a(a==1)=-1%same as a(1,a==1)=-1
a(a==0)=1%same as a(1,a==0)=1;

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by