필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
Hossein
Hossein 2016년 8월 18일
댓글: Hossein 2016년 8월 19일
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
James Tursa 2016년 8월 18일
Please provide more detail. Maybe a short example showing inputs and desired output.
Hossein
Hossein 2016년 8월 19일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Azzi Abdelmalek
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
  댓글 수: 1
Hossein
Hossein 2016년 8월 19일
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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by