How to make the array automatic shift to next column after looping

1 vue (au cours des 30 derniers jours)
Hong Wei Tang
Hong Wei Tang le 20 Août 2021
Réponse apportée : Wan Ji le 20 Août 2021
I want to output a 8752x1 matrix with looping it 5 times, therefore there are 5 sets of 8752x1 matrix to output. However, I only can output the last looping matrix in the end. What should I do in order to show all matrix instead of just showing last?
Thanks. Have a great day.

Réponse acceptée

Wan Ji
Wan Ji le 20 Août 2021
Use following command
total_five_output = zeros(8752,5);
for i = 1:1:5
% .... % your body to generate output
total_five_output(:,i) = output(:); % output is your 8752x1 matrix with each
end

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by