Concatenating an empty numeric array to a cell array
Ältere Kommentare anzeigen
Hi,
I need to add an empty numeric array at the end of a cell array mycellarray that contains numeric arrays. However when I execute : [mycellarray []] it does not concatenate the empty array to the end of mycellarray.
I find it curious since the same command works well with a non-empty array. It looks like matlab is treating [] as if it was {}...
For example :
mycellarray = {[1 2] [4 3 2]};
[mycellarray []]
gives {[1 2] [4 3 2]} as a result, instead of {[1 2] [4 3 2] []}, but :
mycellarray = {[1 2] [4 3 2]};
[mycellarray [3 4]]
returns {[1 2] [4 3 2] [3 4]} and not {[1 2] [4 3 2 3 4]}...
Can somebody help me with this ?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Write C Functions Callable from MATLAB (MEX Files) finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!