void SaveToFile(String FileName, Boolean Append)
Save the strings to a text file.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | FileName | String | |
| 2 | Append | Boolean |
Result: stored in self (calling object)
Examples
Matrix Mtx;
Mtx.SetIt(2,2,false,new double[] {3,1,-1,5});
Mtx.SaveToFile(@"c:\test.mtx"); // Write info and header for Mtx to file