フィルターのクリア

Create a non-rectangular array

10 ビュー (過去 30 日間)
Michael
Michael 2014 年 2 月 21 日
コメント済み: Sunetra CV 2019 年 11 月 13 日
Hi
I have several vectors of different lengths and I'd like to save these in one common variable. Let's say, one vector per row, but with different number of cols per row. Is there a way to do so or do I have to store them in a rectangular matrix and just fill up the rows by zeros?
Best regards Michael

採用された回答

Mischa Kim
Mischa Kim 2014 年 2 月 21 日
編集済み: Mischa Kim 2014 年 2 月 21 日
Michael, have a look at cell arrays:
c = {[1];
[2, 3, 4];
[5, 9];
[6, 7, 8, 10, 11, 12]};
c{2}
ans =
2 3 4
  2 件のコメント
Michael
Michael 2014 年 2 月 21 日
I already tried this, but I made a mistake with [] and {}, so it didn't work and I assumed that cell arrays don't support this at all. But now I see how I have to do it correctly, thanks! :-)
Sunetra CV
Sunetra CV 2019 年 11 月 13 日
Is it possible to call only certain values from the subset of c?

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by