Make calculations based on previous results
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi all,
I have an array of 48x365, I need to make some calculations with the first column and use some of the results to do similar calculations with the second column. then the results of the second to do calculations with the 3rd and so on..
do you have any ideas how to do it without using simulink?
thanksa lot
0 commentaires
Réponses (1)
John D'Errico
le 21 Fév 2017
A loop seems trivial and obvious, even though you give no indication of what computations you need to do. If you don't have any idea how to write a loop, then you need to spend some time reading the getting started tutorials. At the very least, read the help about for.
doc for
You DO want to preallocate the array to be 48x365 in advance, else your next anguished question will be "Why is my code so slow?"
3 commentaires
John D'Errico
le 21 Fév 2017
Modifié(e) : John D'Errico
le 21 Fév 2017
You don't say what is "different". Obviously, you know what the computation is, so clearly you can write the code, or at least it can be written. But if there is no point in giving details, then how can I answer you?
You have a computation that depends on some parameter, as well as the previous column. That it is in a loop is not relevant. You can always access the previous column, as a function of the loop index.
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!