code does gives me an error message if I execute it with F5, but if I mark the full code and press F9, its working

2 次查看(过去 30 天)
Hi,
I have this code here:
S0=10
K=10
T=0.2
Tt=0.05
Vola=0.2
r=0.02
x=[0:0.001:20];
y1=blsprice(S0,K,r,T,Vola)-blsprice(x,K,r,Tt,Vola);
y2=blsprice(S0,K,r,T,Vola)-blsprice(x,K,r,T,Vola);
plot(x,y1,'k',x,y2)
xlabel('Stock Price ($)');
ylabel('Gain ($)');
axis([8 12 -1 0.5]);
set(gca,'xtick',8.5:0.5:12)
text(10.05,0.25,'Call short at t=t','color','k');
text(8.35,0.25,'Call short at t=0','color','b');
line([0 ; 12],[0 ; 0],'color','k')
%line([10 ; 10],[-1 ; 1],'color','k')
set(gca,'Box','off')
By selecting everything and pressing F9, it's working perfectly. However, if I press F5, I get this error message:
Undefined function 'delta_hedge_call_short_portfolio_t1_option' for input
arguments of type 'char'.
Do you have any idea what is not working here?

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-5-4
编辑:Azzi Abdelmalek 2013-5-4
When you select your code then click f9 means your code is executed in the current folder, when you cick f5, it's executed from where the file is saved, maybe it could'nt find some functions
  3 个评论
Azzi Abdelmalek
Azzi Abdelmalek 2013-5-4
I do not think, it 's caused by those constant, check if your m file and all the functions it is calling are in the same folder
Locks
Locks 2013-5-4
I have pasted the whole code in a new script and it's working fine, no idea what the problem was, but thanks for your help

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by