Inserting a double to a cell
9 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
James Tursa
on 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 Comments
More Answers (0)
See Also
Categories
Find more on Simulink Environment Customization in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!