Class
TMtxVec
NOTE: It is recommended you use a *.mtx extension when you're saving/loading matrix to/from file. Similarly, you should use a *.vec extension when you're saving/loading vector to/from file.
| See Also |
|---|
| LoadFromFile |
| SaveToStream |
| LoadFromStream |
var Mtx: TMtx; begin CreateIt(Mtx); try Mtx.SetIt(2,2,False,[3,1,-1,5]); Mtx.SaveToFile('c:\test.mtx'); // Write info and header for Mtx to file finally FreeIt(Mtx); end; end;
| Copyright 2008 Dew Research |