필터 지우기
필터 지우기

How to save index of Values of an item in a matrix?

조회 수: 1 (최근 30일)
Robert
Robert 2023년 3월 17일
답변: Dyuman Joshi 2023년 3월 17일
I have a matrix of of elements like
[0,0,0,1,0,0,0,0,1,0,1]
I'd like to go through the matrix and at each element where the value is greater than zero, I want to save the index to a new matrix such that the new matrix looks like:
[4, 9, 11]

답변 (1개)

Dyuman Joshi
Dyuman Joshi 2023년 3월 17일
x=[0,0,0,1,0,0,0,0,1,0,1];
y=find(x>0)
y = 1×3
4 9 11

카테고리

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

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by