回复 #30 eight 的帖子
我的版本是7.0.4支持匿名函数的,我使用过 好的,真心的谢谢你。我在这里学到了很多的东西,以后会常来的。 原帖由 花如月 于 2007-6-12 11:20 发表 http://www.chinavib.com/forum/images/common/back.gif我的版本是7.0.4支持匿名函数的,我使用过
那有可能是 7.0 没有包含 cellfun 函数了。试试如下代码能否运行:
>> B=cell(2);
>> B
B =
[] []
[] []
>> cellfun(@length,B)
ans =
0 0
0 0
回复 #34 eight 的帖子
>> B=cell(2);>> B
B =
[] []
[] []
>>cellfun(@length,B)
??? Function name must be a string.
看来确实是软件的问题:loveliness: