How to make a loop for an array of ands including cell arrays
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
James Tursa
le 18 Août 2016
Please provide more detail. Maybe a short example showing inputs and desired output.
Réponse acceptée
Azzi Abdelmalek
le 18 Août 2016
%------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
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Elementary Math dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!