Pecentage change of variable

조회 수: 2 (최근 30일)
Benjamin
Benjamin 2012년 2월 8일
Hi everyone, I'm very sorry for that question but I'm all new to Matlab and I'm still on my way to figure it out. So, the problem is that I want generate a return (i.e. percentage change) variable. I imported the absolut values of the variable from Excel and now I'd like to replace them by their relative change. More precisely, the value of x_t_ with respect to its predecessor x_t-1_How can I do that? Any answer would be very much appreciated! I guess it's a very easy question for you but it would very much ease the start for me! Thanks, Ben. P.S.: I also got the Financial Toolbox which might help here...

답변 (4개)

Frank
Frank 2012년 2월 8일
This could do it:
>> a = [1 1.1 1.2 1 0.9 1.3];
>> b = [diff(a) NaN];
>> b./a
ans =
0.1000 0.0909 -0.1667 -0.1000 0.4444 NaN
diff returns the difference between two vector elements. It is one element shorter, therefore I added a NaN to the new vector. In the end a element-wise division
Cheers, Frank
  댓글 수: 1
Walter Roberson
Walter Roberson 2012년 2월 8일
... and multiply by 100 for percentage ;-)

댓글을 달려면 로그인하십시오.


Benjamin
Benjamin 2012년 2월 8일
Hi Frank and Walter, thanks very much for the quick answer. One little follow-up: when I apply your exact example it works fine, however, if I apply it on my own variable I receive the following error:
>> BondsII = [diff(Bonds) NaN] ??? Error using ==> horzcat All matrices on a row in the bracketed expression must have the same number of rows.
I'm not sure what the problem might be... could be the way my variable is stored? It's currently stored as double. Cheeers Ben

Frank
Frank 2012년 2월 8일
your elements in Bonds are not aligned in a row they are aligned in a column. have a look at a and then at Bond, then you will see the diff. you could either b = [diff(Bond); NaN]; or b = [diff(Bond') NaN];
where ' transposes the matrix/vector Bond

Walter Roberson
Walter Roberson 2012년 2월 9일
Is your data a vector or an array?
Vector, either row or column vector:
BondsII = [diff(Bonds(:)); NaN];
(BondsII ./ Bonds(:) .* 100) .'
The final .' is just there to make a row vector out of the results
Array, and assuming you want to process across rows (which is not the default):
BondsII = [diff(Bonds,[],2), NaN(size(Bonds,1),1)];
BondsII ./ Bonds .* 100
  댓글 수: 1
Isaac
Isaac 2013년 8월 8일
I have a slight problem when i used this.
For example, I have 13.39 in data(2) and 13.06 in data(1) so the current percent diff should be -2,46 but i am getting +2.52.
Where did i go wrong?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Financial Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by