How to create a list?

1,070 ビュー (過去 30 日間)
SC
SC 2019 年 2 月 9 日
回答済み: Image Analyst 2019 年 2 月 9 日
Hi,
I want to store numbers in an object A, so that when I call A(i) I can got the i-th element.
But each A(i) may have different length and thus I can't put them in a matrix or array. A list would be preferred, and seems I can't create such an object in Matlab.
How can I proceed? Thanks.
  3 件のコメント
SC
SC 2019 年 2 月 9 日
For example, I want to store [1;3;6], [2;4] and [3] into the same object A, such that when I call A(2), I can get [2;4]. How can I do that?
Stephen23
Stephen23 2019 年 2 月 9 日
"How to create a list?"
MATLAB does not have a "list" data class. If you want a container class to hold other arrays, you can use a cell array, a structure, a table, etc.:

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

回答 (2 件)

madhan ravi
madhan ravi 2019 年 2 月 9 日
Store it as a cell array:
>> A={[1;3;6], [2;4], [3]}
A =
1×3 cell array
{3×1 double} {2×1 double} {[3]}
>> A{2}
ans =
2
4
>>

Image Analyst
Image Analyst 2019 年 2 月 9 日
Use a cell array. See the FAQ

カテゴリ

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

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by