Check size of vector contained in two different cell array

2 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Farhath Fatima
Farhath Fatima el 12 de Feb. de 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.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by