How i can remove inf value and zero value in 10x10 Matrix?

조회 수: 45 (최근 30일)
Arsal15
Arsal15 2016년 1월 25일
편집: Arsal15 2016년 1월 25일
Hi, I want to remove the highlight red data from the 10x10 matrix and also the index (i=j) which is inf.? Need your guidance. One more thing I want to extract the indices where the value is non zero?

채택된 답변

goerk
goerk 2016년 1월 25일
편집: goerk 2016년 1월 25일
I assume you want the finite values which are not zero?
A % input Matrix
nonZeroValues = A(A~=0 & isfinite(A));
to get the indices you can run
ind = find(A~=0 & isfinite(A))
[row col] = ind2sub(size(A), ind)

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by