How to repeat a function several times?

Hello everyone,
I have a function that calculates the time series of a growth rate assuming that the growth rate follows an AR(1) process. So the value t1 depends on t0 and so on. I do this procedure for different sample sizes. How can I repeat this function, say 1000 times, in the way, that the calculation begins from t0 for each simulation path and that the output is a ((1000*samplesize),x) matrix.
Thank you in advance.

 채택된 답변

dpb
dpb 2017년 10월 15일

0 개 추천

Just preallocate the output array and call the function in a loop saving each simulation in row/column of the array depending on which orientation you wish.
Alternatively, could use arrayfun but the loop will probably out-perform it....

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

질문:

Leo
2017년 10월 14일

답변:

dpb
2017년 10월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by