gpt4 book ai didi

matlab - 将 `bsxfun` 用于非数字数据

转载 作者:太空宇宙 更新时间:2023-11-03 19:38:50 25 4
gpt4 key购买 nike

对于非数字数据,是否有等价于 bsxfun 的方法?

例如,我想比较存储在两个元胞数组中的所有字符串对:

>> a = {'aa', 'bb', 'cc'};
>> b = {'dd', 'aa'};
>> bsxfun( @strcmp, a, b' ); % not working for cells :-(

最佳答案

我喜欢Rody's solution ,但您可以也做这样的解决方法:

ia=(1:length(a)).'; ib=1:length(b);
a=a(:);
bsxfun(@(ii,jj) strcmp( a(ii),b(jj) ) ,ia, ib);

关于matlab - 将 `bsxfun` 用于非数字数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17090047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com