cell array into matrix

3 visualizaciones (últimos 30 días)
NIKHIL MC
NIKHIL MC el 15 de Mzo. de 2023
Comentada: Dyuman Joshi el 15 de Mzo. de 2023
i want to convert a cell array having different number of rows into a matrix. I tried different ways but couldnt get the exact solution
for j1=1:m1
[pks{j1},fa{j1}] = findpeaks(z1(1:end,j1));
[pks1{j1},fr{j1}] = findpeaks(-z1(1:end,j1));
end
  1 comentario
Dyuman Joshi
Dyuman Joshi el 15 de Mzo. de 2023
Do you mean different number of columns?
You can not concatenate rows/columns having inconsistent dimensions to obtain a numeric matrix.
y={[1 2];[3 4 5]};
cat(1,y{:})
Error using cat
Dimensions of arrays being concatenated are not consistent.
You might have to pad the rows/columns with NaN or any other value.

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 15 de Mzo. de 2023
Read about cell2mat.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by