Dimensions of arrays being concatenated are not consistent.
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hi, i receive this error...How can i solve it?
arr = load('matlab_bb.mat')
disp(arr.bb)
cell2mat(arr.bb)
cell2mat(bb)
Error using cat
Dimensions of arrays being concatenated are not consistent.
13 comentarios
Image Analyst
el 10 de Abr. de 2024
@Luca Re see the FAQ for a good explanation of a cell array:
It explains how and when to use curly braces, square bracket, or round parentheses. I think it will help you get a good intuitive feel for when to use each.
Respuestas (1)
Ramtej
el 10 de Abr. de 2024
Hi,
Assuming you are triying to convert cell array of characters into string array.
You can use "string" function for your case as shown below.
stringMatrix = string(arr.bb)
0 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing 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!