How to horizontally merge cells of strings/chars for each row without writing a for-loop?

조회 수: 1 (최근 30일)
I have some m*n cells of char arrays, and the figure serves as an example for that. Is it possible to horizontally merge char arrays of each rows like 'B659' and 'Z01' to 'B659Z01' without using a for-loop to iterate each row?

채택된 답변

Walter Roberson
Walter Roberson 2022년 11월 21일
fmt = repmat('%s', 1, size(YourCell,2));
output = compose(fmt, string(YourCell));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by