maximum and minimum of each columns of a cell array
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a cell array of 1x16. In each cell there is a number of columns and rows data. I want to find maximum and minimum of each column of each data i.e data{1,1},data{1,2}.....data{1,16} ans store in a matrix so that i can plot the graph. how do i find out maximum and minimum of such cell array data and store in a a matrix? I have attached the screenshot for clear understanding.
1 commentaire
Matt J
le 17 Mai 2016
If all data{i,j} are the same size, then you probably should be using normal numeric arrays, instead of cell arrays.
Réponse acceptée
Star Strider
le 17 Mai 2016
I’m not certain how your cell array is organised, so see if this works with your data:
Data = {randi(99, 9), randi(99, 9), randi(99, 9)}; % Create Data
Max_Col_Cell = cellfun(@max, Data, 'Uni',0); % Cell Array Of Maximum Column Values
Max_Col_Num = cell2mat(Max_Col_Cell'); % Convert To Numeric Array
2 commentaires
Star Strider
le 17 Mai 2016
I am not certain what you mean by ‘absolute value of maximum and minimum of the data’. If you want the absolute value (the magnitude of complex numbers or the positive value of negative numbers) use the abs function.
If you want to know the difference between the maximum and minimum for each column, subtract the minimum from the maximum.
If you want to know the maximum of all the columns in each matrix, use the max function across the maximum numbers for that matrix. Do the same to get the minimum.
If none of these does what you want, please be more specific in describing your objective.
Plus de réponses (2)
Andrei Bobrov
le 17 Mai 2016
Modifié(e) : Andrei Bobrov
le 18 Mai 2016
d = cat(3,Data{:});
datamin = squeeze(min(d))';
datamax = squeeze(max(d))';
0 commentaires
Voir également
Catégories
En savoir plus sur Data Types 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!