convert logical values to numeric values

조회 수: 134 (최근 30일)
William Gray
William Gray 2021년 3월 2일
댓글: William Gray 2021년 3월 2일
Hi Everyone,
Really simple question but I'm struggling converting a logical array from an ischange function to a double matix. I've written the following code just to show the issue I am having. How do I convert the b to a double matrix?
Thanks!
a=[1 1 5 1 1]
b = ischange(a)
c = cell2mat(b)

채택된 답변

Jan
Jan 2021년 3월 2일
편집: Jan 2021년 3월 2일
a = [1 1 5 1 1]
b = ischange(a)
c = double(b)
% Alternative:
d = b + 0 % Addition with DOUBLE converts to double
cell2mat needs a cell array as input, but here are no cells.

추가 답변 (1개)

Steven Lord
Steven Lord 2021년 3월 2일
What do you want the double array to represent?
  • Just 0 and 1 instead on false and true? Use Jan's approach.
  • 0 where there isn't a change point, the value of the original signal where there is? Use .* to multiply the original signal and the logical vector.
  • The indices where the change points occur in the original signal? You can use find for this, but if you're planning to use this for indexing (to get just the change point value) you can use the logical array returned by ischange to perform logical indexing.
  • Something else, in which case please explain what you want to do in more detail.
  댓글 수: 1
William Gray
William Gray 2021년 3월 2일
just a 0 for no change, a 1 where there is a change point so Jan's approach worked, but thank you for this, also very useful!

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

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by