source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/opt/yalmip/extras/ipopt_funhess.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 204 bytes
Line 
1function [nnz,row, col, val] = pennlp_funhess(x)
2
3
4H = datasaver(3,x);
5H = reshape(H,sqrt(length(H)),sqrt(length(H)));
6[row,col,val] = find(tril(H));
7nnz = length(val);
8row = row';
9col = col';
10val = val';
Note: See TracBrowser for help on using the repository browser.