Filter löschen
Filter löschen

Insert an array into another array

3 Ansichten (letzte 30 Tage)
evangeline
evangeline am 2 Mär. 2018
Beantwortet: James Tursa am 2 Mär. 2018
I need to insert an array into another array, so that subarray would be like one single element in it, like: A=[2,4,5,[5,6],9] so if I use numel on this array, it should give me 5. How can I do this in matlab? And if I do this how can I have access to the subarray elemets?

Akzeptierte Antwort

James Tursa
James Tursa am 2 Mär. 2018
You can't do this with double class variables, where you are limited to one value per element. But you could use a cell array for this. E.g.,
A = {2,4,5,[5,6],9};
Then use the curly braces to get at the values. E.g., A{1}, A{2}, etc.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and 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