Error using cat Dimensions of arrays being concatenated are not consistent. Error in cell2mat m{n} = cat(1,c{:,n});
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm trying to make an error bar plot with experimental data. i have used cell2table function to make a table some of the values on the table have [x,x] values like this with corresponding [y,y] and some of them are single values regardless i need to plot all of them against each other along with their error bars. but i keep getting this error on matlab.
% Scatter plot with error bars
figure;
errorbar(cell2mat(dataTable.FrictionAngle), cell2mat(dataTable.Cohesion), cell2mat(dataTable.Cohesion) - cell2mat(dataTable.CohesionMin), cell2mat(dataTable.CohesionMax) - cell2mat(dataTable.Cohesion), cell2mat(dataTable.FrictionAngle) - cell2mat(dataTable.FrictionAngleMin), cell2mat(dataTable.FrictionAngleMax) - cell2mat(dataTable.FrictionAngle), 'o');
please help
3 commentaires
Réponse acceptée
Voss
le 22 Mai 2024
Modifié(e) : Voss
le 22 Mai 2024
load dataTable
NC = cellfun(@numel,dataTable.Cohesion);
Cmin = repelem(dataTable.CohesionMin,NC,1);
Cmax = repelem(dataTable.CohesionMax,NC,1);
NFA = cellfun(@numel,dataTable.FrictionAngle);
FAmin = repelem(dataTable.FrictionAngleMin,NFA,1);
FAmax = repelem(dataTable.FrictionAngleMax,NFA,1);
FA = [dataTable.FrictionAngle{:}].';
C = [dataTable.Cohesion{:}].';
% Scatter plot with error bars
figure
errorbar(FA,C,C-Cmin,Cmax-C,FA-FAmin,FAmax-FA,'o');
14 commentaires
Peter Perkins
le 29 Mai 2024
Voss said, "The types and sizes of data stored in this table are quite different than the original table"
One big difference is that in dataTable, Cohesion and FrictionAngle are "ragged", with some rows having two values and others only one, while in MarsRegolith, those both have two values in every row. Using cell arrays is a necessary complication in the former, while it is just overcomplicating things in the latter.
Plus de réponses (1)
Venkat Siddarth Reddy
le 22 Mai 2024
Modifié(e) : Venkat Siddarth Reddy
le 22 Mai 2024
Hi Amanath,
The error is due to inconsistents in the sizes of elements wthin the cell arrays dataTable.Cohesion and dataTable.FrictionAngle .
For a successful conversion of a cell array into a MATLAB array, it's neccessary that all cells are of uniform size. However in the columns mentioned, there's a mix of single-element cells alongside cells containing two elements. This discrepancy in cell sizes is what led MATLAB to generate an error.
load("dataTable")
dataTable.Cohesion([1 2])
%Similarly for FrictionAngle
dataTable.FrictionAngle([1 2])
Hope its clear
0 commentaires
Voir également
Catégories
En savoir plus sur Data Distribution Plots 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!