MATLABfromCSharp.MatlabWriter.Save C# (CSharp) Method

Save() public method

public Save ( ) : void
return void
        public void Save()
        {
            using(writer = new System.IO.StreamWriter(Filename))
            {
                WriteImports();
                WriteConnection("TYOUNG_APMATLAB", "EngleTest");
                WriteAttributeImport();
            }
        }

Usage Example

Ejemplo n.º 1
0
        /// <summary>
        /// Not implemented. Future use: writes a matlab that imports the same data.
        /// </summary>
        /// <param name="filePath"> The path to where the file will be written.</param>
        public void saveMatlabLog(string filePath)
        {
            MatlabWriter writer = new MatlabWriter(filePath);

            writer.Save();
        }
All Usage Examples Of MATLABfromCSharp.MatlabWriter::Save