Match 2 vectors
古いコメントを表示
Hello everyone,
I have 3 vectors as follow:
A) Vvect = ones(1,251)';
B) Yvect = (V -((1-tau)*coupon/r) + ((1-tau)*coupon/r-sd)*(V/sd)^- x)*ones(251,1);
C) Evect = [1,2,3,4...241] (exogenous numbers)
I want to match vector C) and B) by changing vector A). I would like to iterate this and doing this for all 1 to 251 and save this into my vector Vvect. I don't knwo the command to match these 2 vectors with A) and also don't know how to loop this command.
Thank you for your help,
回答 (1 件)
Walter Roberson
2011 年 3 月 30 日
I don't understand what you would be looping over?
What you write looks to me that you want
Vvect = Evect ./ Yvect;
Ah, your amendment just came through and now I'm more confused about what you want!
3 件のコメント
Alan
2011 年 3 月 30 日
Walter Roberson
2011 年 3 月 30 日
You have an extra ) in that SV expression.
What are some typical values for x ? If x is a positive integer then you get a polynomial of order x+1; if x is a negative integer then you get a polynomial of order x.
Alan
2011 年 3 月 30 日
カテゴリ
ヘルプ センター および File Exchange で Performance and Memory についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!