Check size of vector contained in two different cell array

2 vues (au cours des 30 derniers jours)
Farshid Daryabor
Farshid Daryabor le 10 Fév 2020
How can I check if the vector size in the two different cell arrays is equal and then delete the array with different sizes compared to the reference/target vector?
For instance, the vector in cell arrays, called "A", compare to the target cell. I really thanks in advance any suggestion/comments

Réponse acceptée

Farhath Fatima
Farhath Fatima le 12 Fév 2020
Hi Farshid,
You can find the size of each column of cells A and Target as follows:
load('example.mat')
idx=cell2mat(cellfun(@(x) size(x), A, 'UniformOutput', false));
idx2=cell2mat(cellfun(@(x) size(x), Target, 'UniformOutput', false));
Idx returns sizes of columns of cell A. (For Example idx(1:2) returns size of column1,idx(3:4) returns sizes of column2 and so on..)
idx2 returns sizes of columns of cell Target
You can compare sizes, also compare values(by changing you equation in cell function) based on your requirement.

Plus de réponses (0)

Catégories

En savoir plus sur Logical 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!

Translated by