Filter löschen
Filter löschen

How do you insert a row or a column into a cell array?

200 Ansichten (letzte 30 Tage)
Benjamin Pommer
Benjamin Pommer am 9 Okt. 2022
Beantwortet: dpb am 9 Okt. 2022
Dear Matlab community
I want to insert a row or a column into a cell array. How could I conduct that?
Best regards
Benjamin

Akzeptierte Antwort

dpb
dpb am 9 Okt. 2022
No differently than with any other array -- although inserting in the middle somewhere requires copying (although with cell arrays, the actual data won't be copied)
c={rand(2),rand(2)} % create starting cell array
c = 1×2 cell array
{2×2 double} {2×2 double}
c=[c(1) {rand(4,2)} c(2)] % insert a new cell in the middle
c = 1×3 cell array
{2×2 double} {4×2 double} {2×2 double}
NB: The cell array c itself must remain rectangular; as demonstrated the content in a cell can be anything. This with the orginal row vector can only insert a single row; with a 2D array will have to insert content for all rows/columns, etc., ...

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by