How to insert the missing number into the cell array?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Suppose that I have this
I=[3 5 6 8 10 11]
A={[3];[6;8];[];[11]}
How to find the missing number of I in A and insert that number into any position of A? for intance like:
A={[3];[6;8];[5];[10;11]}
4 Kommentare
Akira Agata
am 14 Mai 2019
Bearbeitet: Akira Agata
am 14 Mai 2019
One quick question:
How did you define the position of '10' in your cell array A?
Akzeptierte Antwort
KSSV
am 14 Mai 2019
I=[3 5 6 8 10 11] ;
A={[3];[6;8];[];[11]} ;
% get empty cell
idx = cellfun(@isempty,A) ;
A{idx} = setdiff(I,cell2mat(A))
11 Kommentare
KSSV
am 14 Mai 2019
I=[3 5 6 8 10 11] ;
A={[3];[6;8];[];[11]} ;
% get empty cell
idx = cellfun(@isempty,A) ;
missing = setdiff(I,cell2mat(A)) ;
A{idx} = missing(1)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices 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!