How to get the array elements indexes

Hello Sir/Mada, I have matrix:
A=[2 9 0 3]
and I want to get Index_A=[1 2 3 4]
I used "find"
I got the answer (which is not I required),here it didn't considered "Zero" It is only considering non zero elements. Kinldy help How to I get the indexes including zero elemets.
I used this code:
>> A=[2 9 0 3]
A =
2 9 0 3
>> Index_A=find(A)
Index_A =
1 2 4
Many many thanks in advance.

2 件のコメント

Stephen23
Stephen23 2015 年 7 月 29 日
>> 1:4
ans =
1 2 3 4
the cyclist
the cyclist 2015 年 7 月 29 日
You might want to check out some of the free, online resources available for learning MATLAB. Here is one place to get started.

サインインしてコメントする。

回答 (1 件)

the cyclist
the cyclist 2015 年 7 月 29 日
編集済み: the cyclist 2015 年 7 月 29 日

0 投票

Index_A = 1:numel(A)

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

タグ

質問済み:

2015 年 7 月 29 日

コメント済み:

2015 年 7 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by