Filter löschen
Filter löschen

How do I combine vectors to form a matrix?

2 Ansichten (letzte 30 Tage)
Franchesca
Franchesca am 14 Mai 2014
Beantwortet: Andrei Bobrov am 14 Mai 2014
I am trying to run a loop which puts column 5 from every cell in this array shown below into a new matrix:
This is my code at the moment:
combined = [6050,54]
for i=1:length(mydata)
combined(:,i) = mydata{i,1}(:,5);
end
This is the error I recieve:
Subscripted assignment dimension mismatch.
Error in MatlabCoursework (line 84) combined(:,i) = mydata{i,1}(:,5);

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 14 Mai 2014
combined = cell2mat(cellfun(@(x)x(:,5),mydata,'un',0));

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by