I wanted to combine these cells into a table.

1 vue (au cours des 30 derniers jours)
CalebJones
CalebJones le 25 Oct 2019
Commenté : CalebJones le 25 Oct 2019
I wanted to perform horzcat to this.

Réponse acceptée

galaxy
galaxy le 25 Oct 2019
Do it as following:
load('matlab.mat');
out = cell2mat(new_raw(1,1));
for i=2:length(new_raw)
out = horzcat(out, cell2mat(new_raw(1,i)));
end

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays 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!

Translated by