how to display the <1x19 cell> values in msgbox
Show older comments
I need to display the <1x19 cell> values in msgbox using GUI.
Accepted Answer
More Answers (1)
Star Strider
on 29 Aug 2015
This works:
cellvct = {randi(99, 1, 19)}; % Create Cell
h = msgbox(sprintf('%g\n',cellvct{:})); % Display Cell In ‘msgbox’
Categories
Find more on App Building in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!