Delete the first element from each first row inside the cell array
조회 수: 11 (최근 30일)
이전 댓글 표시
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
채택된 답변
Sriram Tadavarty
2020년 11월 5일
Hi Daria,
You can try
A1 = cellfun(@(x) x(2:end), A, 'UniformOutput', false)
Hope this helps.
Regards,
Sriram
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!