Suppose I have a cell array containing an array of integer arrays. What is the best way to search the cell array for a specific array and return true if it exists and false otherwise?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
cellfuncombined withisequal:For example:
This will give you an array that contains
truein the cells that the element exists.In order to check whether the element exists at least once, just use: