Matlab:在msgbox中显示消息和单元格数组

时间:2013-09-24 23:05:48

标签: matlab

我有一个单元格'Animals',内容为:

'Cat'
'Dogs'
'Elephant'

我想在消息框中显示以下内容:

The only animals in our zoo are:
Cat
Dogs
Elephant

我如何实现这一目标?

编辑: 很抱歉:每次用户运行代码时,单元格数组'Animals'的内容都会发生变化。 “动物”的大小大多是3x1或4x1。因此,必须识别可变大小和内容。

1 个答案:

答案 0 :(得分:1)

如果您阅读msgbox的{​​{3}}:

,则非常简单
intro = 'The only animals in our zoo are:'
animals = {'Cat','Dogs','Elephant'}; % Define as desired:
msgbox([intro animals])