How to assign two identifiers to a vector of n values.

1 回表示 (過去 30 日間)
Fred
Fred 2013 年 12 月 1 日
コメント済み: Fred 2013 年 12 月 1 日
Hi, I need to assign two identifiers to a vector of n values like V i,j in a way that V is not a cell but it is a vector of n values. How can I do that

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 12 月 1 日
編集済み: Azzi Abdelmalek 2013 年 12 月 1 日
V=[2 4;5 8] % V is a matrix not a vector
i=1;
j=2;
V(i,j)
Look at
doc array
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 12 月 1 日
Use cell array
V={ [2;3;4] [5 8 9]; [2 0 1 4] 5}
Fred
Fred 2013 年 12 月 1 日
Thank you, How can I call the V(2,1) because when I type it it just returns
[1x4 double]
How can I get directly
[2 0 1 4]

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by