How to make a loop for an array of ands including cell arrays
1 回表示 (過去 30 日間)
古いコメントを表示
Hi
I want to make a loop for the following expression:
location1=find ( ...
equation{1}<1e-1 & ...
equation{2}<1e-1 & ...
equation{3}<1e-1);
each "equation {}" is a cell array and each cell includes a three dimensional matrix. I do not know how to and all of these equations in a loop way.
Thanks
2 件のコメント
James Tursa
2016 年 8 月 18 日
Please provide more detail. Maybe a short example showing inputs and desired output.
採用された回答
Azzi Abdelmalek
2016 年 8 月 18 日
%------Example--------------------
A=cell(1,5)
A=cellfun(@(x) rand(10,9,8),A,'un',0)
%--------------------------------------
idx=cellfun(@(x) find(x<0.01),A,'un',0) % Locations
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!