Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2929_PrioritizedGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.PGE/3.3/go-code/go-levmar/levmar-2.6/matlab/meyer.m @ 16080

Last change on this file since 16080 was 16080, checked in by hmaislin, 6 years ago

#2929 initial commit of working PGE version

File size: 175 bytes
Line 
1function x = meyer(p, data1, data2)
2  n=16;
3
4% data1, data2 are actually unused
5
6  for i=1:n
7    ui=0.45+0.05*i;
8    x(i)=p(1)*exp(10.0*p(2)/(ui+p(3)) - 13.0);
9  end
Note: See TracBrowser for help on using the repository browser.