using vectors as inputs for a function
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I have this function here:
function HestonCallPriceF
x0 = [1.1768 0.082259 0.83746 -0.54589]; %parameters: psi m xi rho
PC = 1; F = 100; K = 100; T = 0.2; r = 0.04; V0 = 0.02;
CallPriceF(PC, F, K, T, r, V0, x0)
%Delta
epsD = abs(F)*eps^(1/6);
Delta=(CallPriceF(PC, F+epsD, K, T, r, V0, x0)-CallPriceF(PC, F-epsD, K, T, r, V0, x0))/(2*epsD)
%Vega
epsV = abs(V0)*eps^(1/6);
Vega=(CallPriceF(PC, F, K, T, r, V0+epsV, x0)-CallPriceF(PC, F-epsD, K, T, r, V0-epsV, x0))/(2*epsV)
Which is working fine for those inputs:
PC = 1; F = 100; K = 100; T = 0.2; r = 0.04; V0 = 0.02;
Which I have used above. Indest of having this inputs, I would like the function to compute me the delta and vega for each row of a matrix and therefore I tried to replace those iputs:
PC = 1; F = 100; K = 100; T = 0.2; r = 0.04; V0 = 0.02;
with this here:
PC=data9(1,3); F=data9(1,1); K=data9(1,2); T=data9(1,5); r=data9(1,7); V0=(data9(1,8)/100)^2;
For some reason this is not working.
I would like to store the deltas and vegas in two additional vectors which I then add to the existing matrix called data9
is there a way to do this or where is the mistake I am making?
1 个评论
Jordan Monthei
2013-5-9
why not have a loop that goes through each element of your input vectors one at a time and calculates the delta vega with the output then being placed in an output vector?
采纳的回答
Matt Tearle
2013-5-9
编辑:Matt Tearle
2013-5-9
"this is not working" What is the error message you're getting?
Is there any reason to have HestonCallPriceF be a function? It has no inputs or outputs. Why not just comment out the function declaration line and run it as a script? Then you can at least see what's going on a bit easier, without having to go fully into debug mode.
In fact, the problem may well be that it's a function -- I don't see anywhere that data9 is defined within the function. If data9 is a variable in your base workspace and you're expecting it to be available within HestonCallPriceF, then that's your problem right there.
3 个评论
Matt Tearle
2013-5-9
It sounds like you're calling HestonCallPriceF without any inputs. (MATLAB doesn't care about this until you try to use an input that you haven't provided. In this case, that happens on line 4, where you reference size(data9,1).) If you have data9 in the base workspace, you need to call HestonCallPriceF with that as an input explicitly:
>> HestonCallPriceF(data9)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!