how do i find the 4 element in a matrix

조회 수: 10 (최근 30일)
lowcalorie
lowcalorie 2012년 2월 8일
i need help on writing a script that finds the 4 element in a matrix meaning i need the element in the first row in the fourth column
I am required to use the find() function if that helps

채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 2월 8일
eg:
A = randi(45,5,4)
out = A(1,4)
OR
i1 = reshape(1:numel(A),size(A,2),[]).'
out = A(find(i1 == 4))
or
out = A(i1 == 4)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by