필터 지우기
필터 지우기

how to assign 1 to negative value and 0 to positive values in dataset

조회 수: 4 (최근 30일)
kumud alok
kumud alok 2016년 2월 3일
댓글: Walter Roberson 2016년 2월 4일
i have data in excel consist of 404 rows and 19 columns. In data there are some negative values and positive values so i have to assign '1' to all values in data which is less than zero and '0' to all values which is more than or equal to zero.

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2016년 2월 3일
n = xlsread('name_your_xlsx_file.xlsx');
out = n < 0;
  댓글 수: 6
Walter Roberson
Walter Roberson 2016년 2월 4일
The one minor difference between the pseudocode and Andrei's code is that the pseudocode assigns a 1 and 0 of some unknown data type, whereas Andrei's code assigns 1 and 0 of type logical . logical values and numeric values are transparently converted for most purposes, but from time to time you might need to specifically convert logical values to some other data type such as by using out = double(n<0) if you need double precision 0 and double precision 1 as the values.

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

카테고리

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