Info
此问题已关闭。 请重新打开它进行编辑或回答。
add colums in a cell array of strings
2 次查看(过去 30 天)
显示 更早的评论
Hi, I have the cell array Location(1,4).locID, attached, and I want to trasform it: I want that every row have 19 colums (19 is the max value of the length of all rows). Ex Row corrisponding to Location(1,4).locID{15,1} is
'674' '719' '618' '631' '618' '631' '618' '631' '618' '674'
and I want that became
'674' '719' '618' '631' '618' '631' '618' '631' '618' '674' '' '' '' '' '' '' '' '' ''
and I want to apply this for all rows
Can you help me?
回答(1 个)
Azzi Abdelmalek
2016-3-22
编辑:Azzi Abdelmalek
2016-3-22
s={'674' '719' '618' '631' '618' '631' '618' '631' '618' '674'}
out=repmat({''},1,19)
out(1:numel(s))=s
3 个评论
Azzi Abdelmalek
2016-3-22
编辑:Azzi Abdelmalek
2016-3-22
what is Location(1,4).locID? a cell array? the size?
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!