Inserting a double to a cell
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Cem Eren Aslan
le 2 Juin 2023
Réponse apportée : James Tursa
le 2 Juin 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 commentaires
Réponse acceptée
James Tursa
le 2 Juin 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with Simulink 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!