Effacer les filtres
Effacer les filtres

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 vues (au cours des 30 derniers jours)
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.

Réponse acceptée

Walter Roberson
Walter Roberson le 14 Mai 2019
Modifié(e) : Walter Roberson le 14 Mai 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.

Plus de réponses (1)

KSSV
KSSV le 14 Mai 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 commentaires
jaah navi
jaah navi le 14 Mai 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.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical 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