finding the breakeven point
3 ビュー (過去 30 日間)
表示 古いコメント
Hi,
I have the following equation:
nanmean(R(x0+1))-(fm1.*BHR)+(ntrades/2*n)*log((1-c)./log(1+c));
I know every parameter except c, which is a breakeven point that I want to compute. i.e. I want the value of c that gives: nanmean(R(x0+1))-(fm1.*BHR)+(ntrades/2*n)*log((1-c)./log(1+c))=0;
does any one know how to do this using matlab?
0 件のコメント
回答 (1 件)
bym
2013 年 4 月 19 日
Are you sure your equation is right? Anyway here is an example with a modified equation:
f = @(c) log((c-1)./log(1+c))
fzero(f,2)
ans =
2.1462
0 件のコメント
参考
カテゴリ
Find more on Operators and Elementary Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!