-1

我有一个单元格数组“动物”,其内容为:

'Cat'
'Dogs'
'Elephant'

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

The only animals in our zoo are:
Cat
Dogs
Elephant

我如何实现这一目标?

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

4

1 回答 1

1

如果您阅读以下文档,则非常容易msgbox

intro = 'The only animals in our zoo are:'
animals = {'Cat','Dogs','Elephant'}; % Define as desired:
msgbox([intro animals])
于 2013-09-24T23:10:42.143 回答