필터 지우기
필터 지우기

How do I calculate the annual average log returns and stansard deviation from a series of monthly log returns?

조회 수: 6 (최근 30일)
I would like to extract annual avrage log returns and standard deviation from a dataset containing dates and monthly log returns. Do you know how to solve this? I have calculated the monthly log returns, how do I calculate the annual avrage and standard deviation. I guess I need some sort of loop function, taken in consideration the formula for log return.
thanks

답변 (1개)

Akshit Agarwal
Akshit Agarwal 2019년 10월 7일
편집: Akshit Agarwal 2019년 10월 7일
Hi Lars-Martin,
MATLAB supports Vectorizing of your code, so you don't necessarily need to use any looping function.
You can import your data using load() if its a .mat file or readtable() for other files such as spreadsheets, text files etc.
And then accordingly you can pass the data to the built in functions such as standard deviation, exponential, average (mean), logarithm etc. that you might need for your problem statement.
You can search the documentation for any other functions if required.

카테고리

Help CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by