How to compare two logical arrays
37 次查看(过去 30 天)
显示 更早的评论
Hi,
I would like to compare two logical cell arrays, creating a third logical cell array returning true for when index values of both logical cell arrays are true.
My error;
Undefined unary operator '~' for input arguments of type 'cell'.
Is there a way to do this for cell?
Many thanks
% the two different logical arrays produced by cellfun:
fun_stf_p = cellfun(@(x) x >= stf_p_lb & x <= stf_p_ub, PRES, 'UniformOutput', false);
fun_stf_s = cellfun(@(x) x >= stf_s_lb & x <= stf_s_ub, PSAL, 'UniformOutput', false);
% Create a third logical cell array for which both cell arrays return true
fun_stf = ~fun_stf_p & ~fun_stf_s; % doesn't work
2 个评论
Adam
2019-6-6
编辑:Adam
2019-6-6
Why do you have logical cell arrays in the first place? If they have to be the same length (which they do for you to compare them element by element) and they are both logical then why not just put them in a logical array and use
c = a & b;
type of logic? Surely you don't need the 'UniformOutput', 'false' if the two arrays fulfil those criteria.
采纳的回答
Matthew Sisson
2019-6-6
编辑:Matthew Sisson
2019-6-6
One option is to continue using cellfun for this, as follows:
fun_stf = cellfun(@(x,y) ~x & ~y,fun_stf_p,fun_stf_s)
Another option is to convert to a double and then back again. Is there a reason why you are using cell arrays in the first place? If vectors are all the same length, working with logical arrays will be easier & faster.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!