Clear Filters
Clear Filters

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 views (last 30 days)
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.

Accepted Answer

Walter Roberson
Walter Roberson on 14 May 2019
Edited: Walter Roberson on 14 May 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.

More Answers (1)

KSSV
KSSV on 14 May 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.

Community Treasure Hunt

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

Start Hunting!