Delete the first element from each first row inside the cell array
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Daria Ivanchenko
am 5 Nov. 2020
Kommentiert: Daria Ivanchenko
am 5 Nov. 2020
Hi!
How can I delete the very first element from the first row in every cell array? Number of rows inside each cell array is always 1, number of columns is different.
Example:
A = {[1 2 3 4 5]; [1 2 3 4 5 6]; [1 2 3 4]; [1 2 3 4 5 6 7]}; % in the beginning
A = {[2 3 4 5]; [2 3 4 5 6]; [2 3 4]; [2 3 4 5 6 7]}; % in the end
Thanks!
0 Kommentare
Akzeptierte Antwort
Sriram Tadavarty
am 5 Nov. 2020
Hi Daria,
You can try
A1 = cellfun(@(x) x(2:end), A, 'UniformOutput', false)
Hope this helps.
Regards,
Sriram
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!