필터 지우기
필터 지우기

how to display an array with its position

조회 수: 1 (최근 30일)
PRAVEEN GUPTA
PRAVEEN GUPTA 2019년 8월 11일
편집: madhan ravi 2019년 8월 11일
i have an array such as X=[1 2 3 4 5 6 7 8 8 7 8 6 4 5 3 1]
i want to display the output as X(1)=1 X(2)=2

답변 (1개)

SYED IMTIAZ ALI SHAH
SYED IMTIAZ ALI SHAH 2019년 8월 11일
x(1) % it gives you the entry at location 1
x(2) % it gives you the entry at location 2
c = find(x == 2) % gives you the position of 2 in array.

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by