source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/lightspeed/test_mutable.m @ 37

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

Added original make3d

File size: 153 bytes
Line 
1x = mutable;
2x(1) = 5;
3y = x;
4x(1) = 4;
5assert(y(1) == 4);
6
7x = mutable(struct);
8y = x;
9x.a = 4;
10assert(y.a == 4);
11fprintf('Test passed.\n');
Note: See TracBrowser for help on using the repository browser.