Hi! i have a error in example file.

조회 수: 3 (최근 30일)
Max Fog
Max Fog 2019년 3월 2일
편집: Cris LaPierre 2019년 3월 2일
what i can do ? to fix this error?
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2019년 3월 2일
Max - what is infoRatioTargetReturn? Is this a function of that you have written or is it from somewhere else?

댓글을 달려면 로그인하십시오.

채택된 답변

Cris LaPierre
Cris LaPierre 2019년 3월 2일
편집: Cris LaPierre 2019년 3월 2일
You are trying to call a function that is not in your current folder nor on your path.
It looks like this is the example you are trying to use:
openExample('finance/PortfolioOptimizationBenchmarkExample')
Note that the function called by this script is included in-file at the botton.
function [infoRatio,wts] = infoRatioTargetReturn(targetReturn,portObj)
% Calculate information ratio for a target-return portfolio along the
% efficient frontier
wts = estimateFrontierByReturn(portObj,targetReturn);
portRiskAct = estimatePortRisk(portObj,wts);
infoRatio = targetReturn/portRiskAct;
end
You would need to create an m-file function for this function if you want to run this example from the command window. Better to just open the live script example and run it in the editor.
  댓글 수: 1
Max Fog
Max Fog 2019년 3월 2일
Thanks for You attantion.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Portfolio Optimization and Asset Allocation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by