Got a problem when saving the variables
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
flashpode
le 16 Fév 2022
Commenté : Cris LaPierre
le 16 Fév 2022
Hi, so my problem is the followed, I save every variable that is going to change with the loop into another variable using:
All_Horas{q} = Horas;
The Problem I got is that it saves like its shown in the image and I would like it directly with the number.

How could I do it. All this stuff it is because I want to use this variables to do an hystogram
0 commentaires
Réponse acceptée
Cris LaPierre
le 16 Fév 2022
Try using parentheses instead of curly braces.
All_Horas(q) = Horas;
6 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements 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!