source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/missing-data/impute_up.m @ 37

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

Added original make3d

File size: 231 bytes
Line 
1function A = impute_up(M,INC)
2% This is like impute, except it starts with a rectangle in the
3% lower right, and grows up and to the left.
4M2 = rot90(rot90(M));
5INC2 = rot90(rot90(INC));
6A2 = impute(M2,INC2);
7A = rot90(rot90(A2));
Note: See TracBrowser for help on using the repository browser.