Borrar filtros
Borrar filtros

could anyone help me why the command line execution is getting displayed in the command window while having semicolon at the end of the statement.

2 visualizaciones (últimos 30 días)
I have run my matlab code having semicolon at the end of each matlab command.
If i used semicolon that command execution should not appear in the command window.
But when i run the code that particular command line execution gets displayed in the command window.
command line:
A=c(:,particle)==cluster,cluster,particle;
Could anyone please help me on this.

Respuesta aceptada

Walter Roberson
Walter Roberson el 14 de Mayo de 2019
Editada: Walter Roberson el 14 de Mayo de 2019
You have
A=c(:,particle)==cluster,cluster,particle;
That is equivalent to the three commands
A=c(:,particle)==cluster
cluster
particle;
Possibly you intended
A = c(:,particle) == [cluster;cluster;particle];
which would test whether column #particle of c happens to contain the value of cluster in the first and second row, and the value of particle in the third row.

Más respuestas (1)

KSSV
KSSV el 14 de Mayo de 2019
Read about echo. YOu can make echo on where ever you want to dipslay the command line. And make echo off to stop it.
  2 comentarios
jaah navi
jaah navi el 14 de Mayo de 2019
ok.But i have not used echo on and echo off in my matlab code.
But the result of command line is getting displayedin the command window.

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by