Make calculations based on previous results

1 回表示 (過去 30 日間)
Nikolas Spiliopoulos
Nikolas Spiliopoulos 2017 年 2 月 21 日
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

回答 (1 件)

John D'Errico
John D'Errico 2017 年 2 月 21 日
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 件のコメント
John D'Errico
John D'Errico 2017 年 2 月 21 日
編集済み: John D'Errico 2017 年 2 月 21 日
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.
Nikolas Spiliopoulos
Nikolas Spiliopoulos 2017 年 2 月 21 日
ok i will give it a try, thanks anyway!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by