I'm quite new to programming (MatLab) and I have a question.
I have a character matrix, consisting out of 500 rows and 81 columns. I would like to transform this matrix into a vector with 500 rows. Each row having 81 characters.
If i try the following:
for i = 1:length(CharMatrix)
CharVect(i) = CharMatrix(i,:)
end
it gives the error: "Subscripted assignment dimension mismatch"
What am I doing wrong?