TMtxVecReport.SaveToFile Method

void SaveToFile(String FileName, Boolean Append)

Save the strings to a text file.

#NameTypeDescription
1FileNameString
2AppendBoolean

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