필터 지우기
필터 지우기

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 (최근 30일)
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.

채택된 답변

Walter Roberson
Walter Roberson 2019년 5월 14일
편집: Walter Roberson 2019년 5월 14일
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.

추가 답변 (1개)

KSSV
KSSV 2019년 5월 14일
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
jaah navi
jaah navi 2019년 5월 14일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by