필터 지우기
필터 지우기

what dos this instruction mean

조회 수: 1 (최근 30일)
billel madridi
billel madridi 2013년 5월 16일
i meet this instruction when analyzing a matlab file could you help me what does it mean ?
yone=(y==i)+(y~=i)*-1;
when y is a column vector and i is fix number i=4;
what will be the size of yone in this case ?

답변 (1개)

Walter Roberson
Walter Roberson 2013년 5월 16일
A value of "1" where the entries are "i", and a value of "-1" where the entries are not "i", and 0 where the entries are NaN.
  댓글 수: 1
Jan
Jan 2013년 5월 16일
Equivalent:
yone = 2 * (y==i) - 1;

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

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by