Error using cat Dimensions of arrays being concatenated are not consistent. Error in cell2mat m{n} = cat(1,c{:,n});
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
AMANATH Hassan
el 22 de Mayo de 2024
Comentada: Peter Perkins
el 29 de Mayo de 2024
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 comentarios
Respuesta aceptada
Voss
el 22 de Mayo de 2024
Editada: Voss
el 22 de Mayo de 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 comentarios
Peter Perkins
el 29 de Mayo de 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.
Más respuestas (1)
Venkat Siddarth Reddy
el 22 de Mayo de 2024
Editada: Venkat Siddarth Reddy
el 22 de Mayo de 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 comentarios
Ver también
Categorías
Más información sobre Data Distribution Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!