comparison src/ls-mat5.cc @ 5297:234abf4c74dd

[project @ 2005-04-21 21:29:46 by jwe]
author jwe
date Thu, 21 Apr 2005 21:31:26 +0000
parents bd32f770c09a
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
5296:4e753a157ed2 5297:234abf4c74dd
571 case mxOBJECT_CLASS: 571 case mxOBJECT_CLASS:
572 warning ("load: objects are not implemented"); 572 warning ("load: objects are not implemented");
573 goto skip_ahead; 573 goto skip_ahead;
574 574
575 case mxSPARSE_CLASS: 575 case mxSPARSE_CLASS:
576 #if SIZEOF_INT != SIZEOF_OCTAVE_IDX_TYPE
577 warning ("load: sparse objects are not implemented");
578 goto skip_ahead;
579 #else
576 { 580 {
577 int nr = dims(0); 581 int nr = dims(0);
578 int nc = dims(1); 582 int nc = dims(1);
579 SparseMatrix sm; 583 SparseMatrix sm;
580 SparseComplexMatrix scm; 584 SparseComplexMatrix scm;
693 } 697 }
694 else 698 else
695 tc = sm; 699 tc = sm;
696 } 700 }
697 break; 701 break;
702 #endif
698 703
699 case mxFUNCTION_CLASS: 704 case mxFUNCTION_CLASS:
700 warning ("load: function handles are not implemented"); 705 warning ("load: function handles are not implemented");
701 goto skip_ahead; 706 goto skip_ahead;
702 707