want to find the particular column when the column content is given

조회 수: 1 (최근 30일)
a=[1 4 5 9 40 23 18] then if a(5) on command window then output 40 then 'what is the command to know' in which column 40 is there?

채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 1월 19일
i1 = find(a == 40)
OR
i1 = find(abs(a - 40) < 1e3*eps)

추가 답변 (1개)

Robert Cumming
Robert Cumming 2012년 1월 19일

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by