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/jacmodhs52.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: 209 bytes
Line 
1function jac = jacmodhs52(p)
2  m=5;
3
4  jac(1, 1:m)=[4.0, -1.0, 0.0, 0.0, 0.0];
5  jac(2, 1:m)=[0.0, 1.0, 1.0, 0.0, 0.0];
6  jac(3, 1:m)=[0.0, 0.0, 0.0, 1.0, 0.0];
7  jac(4, 1:m)=[0.0, 0.0, 0.0, 0.0, 1.0];
Note: See TracBrowser for help on using the repository browser.