Filter löschen
Filter löschen

How to make a loop for an array of ands including cell arrays

2 Ansichten (letzte 30 Tage)
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 Kommentare
James Tursa
James Tursa am 18 Aug. 2016
Please provide more detail. Maybe a short example showing inputs and desired output.
Hossein
Hossein am 19 Aug. 2016
Thanks for your attention. "equation{i}" gives me a three dimensional matrix of real numbers. So, in the aforementioned command, we have 3 matrices which are three dimensional. I need to find the places (in these three dimensional matrices) at which for all these three 3-dimensional matrices the value is less than one.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 18 Aug. 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
  1 Kommentar
Hossein
Hossein am 19 Aug. 2016
Thanks for your good response. The point is that I want to "and" all of these together. In addition, consider the number of cells should be defined during the code and before that I do not know how many cells I will have. So, I guess I need a for-loop which can "and" any number of matrices and find the locations at which the criteria I want is satisfied.
Regards

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by