matlab中,如何给元胞数组中的空白项赋值,也就是把元胞数组中显示为【】的地方赋值,感觉要用到循环?

 我来答
i2nd
推荐于2016-02-22 · TA获得超过1.4万个赞
知道大有可为答主
回答量:2016
采纳率:0%
帮助的人:1413万
展开全部
No need to use any loop. Try the following code.

>> a={1:10, [2;4;6],[]}
a =
[1x10 double] [3x1 double] []

>> a{cellfun(@isempty, a)} = 'non-empty now'
a =
[1x10 double] [3x1 double] 'non-empty now'

You can see that calling "cellfun" with "isempty" and cell array "a" as the parameters will return an index cell array, and you can use this index cell array to reference "a".
This method works when you want to assign same value to all the "[]"s.

If you want to give every "[]" an different value, "for" loop is the most straightforward method.
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lijinfeng042
2011-11-16 · TA获得超过678个赞
知道小有建树答主
回答量:725
采纳率:0%
帮助的人:595万
展开全部
可以的 例如 使用()和{} 比如 第一列的第二个空白 d(2,1)={...} 具体的一些基础参考help或者我写的总结
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式