How i make the code for transpose matrix data iteratively
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
i don't know how i make the code for transpose matrix data iteratively

I have 60 matrix data, but i want to this 3x167 form
how i make the code?
#I don't know the type of data to be entered after transpose.
Can you explain the principle of separating 'NF' and (i)?
for i=1:60
eval(['NF',num2str(i)]) = transpose(???)
end
2 comentarios
Rik
el 13 de En. de 2022
Why did you decide to use numbered variables? This only makes processing harder and is (almost) never needed.
If you had been using a cell array, a trivial loop would do it, no weird eval calls required.
Duplicate, with answer & discussion on why this is a slow, complex, inefficient approach to data design:
Respuestas (0)
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!