Inserting a double to a cell
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Cem Eren Aslan
am 2 Jun. 2023
Beantwortet: James Tursa
am 2 Jun. 2023
Hi all,
I try to find minimum value in two different colums and then i want to assign the smallest one to a cell. How can i search this minimum value in two different column? How can i insert a double to cell?
Thx.
0 Kommentare
Akzeptierte Antwort
James Tursa
am 2 Jun. 2023
E.g.,
x = randi(100,10,10) % sample data
columns = [4,7]; % columns to check
minx = min(x(:,columns)) % minimum of the two columns
c{1} = min(minx) % assign smallest one to cell element
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Simulink Environment Customization 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!