display string array cells as bullet points in text
23 次查看(过去 30 天)
显示 更早的评论
I have a string array as follows:
words = ["1a";...
"2a";...
"2a";...
"4a";...
"5b";...
"1a"]
I am using the mlreportgen.ppt in matlab to create a powerpoint. On one of the slides, there is an existing textbox. I would like to replace the textbox with bulletpoints of the array words. I tried the following but the output is a table and not bullet points or even just text.
contents = find(slides, 'textbox') % finds the textbox of which the contents will be replaced
newtext = words;
replace(contents(1),newtext)
I also only want to list repeating cells once. What I want the programm to put into the textbox is as follows basically:
- 1a
- 2a
- 4a
- 5b
any help appreciated!!
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Report Generator 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!