finding the breakeven point

8 visualizaciones (últimos 30 días)
joseph Frank
joseph Frank el 19 de Abr. de 2013
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?

Respuestas (1)

bym
bym el 19 de Abr. de 2013
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

Categorías

Más información sobre Breaks, Knots, and Sites en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by