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

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

Added original make3d

File size: 256 bytes
Line 
1function [nnz, row, col, val] = pennlp_fun(i,x)
2
3try
4H = datasaver(6,x,i+1);
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';
11catch
12end
13
14%[nnz, row, col, val] = hg(i,x);
15
Note: See TracBrowser for help on using the repository browser.