How to save the values of variables during each iteration(for loop) in a single variable?

73 vues (au cours des 30 derniers jours)
hello everyone.
i am extracting 4 features of audio signals and i need to save all values of each feature in each iteration in a single variable so that i can use it later.
thankyou.

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 28 Oct 2022
Modifié(e) : KALYAN ACHARJYA le 28 Oct 2022
If output is numeric use Array
output=zero(1,total iteration); % Pre-allocate the variable
for iter i=1:...
output(i)=....Calculate here and save
end
If the output is vector or any group of numbers, use Cell Array
output=cell(1,total iteration); % Pre-allocate the variable
for iter i=1:...
output{i}=....Calculate here & save
end
Hope it helps!
  3 commentaires

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical 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