版本1.1.7813.24580
File types
Additional components that extend the capabilities of the SMath Studio program by adding support for various file types.
- .odt — ODF Text Document
- .tex — XeLaTeX Document
Functions
Additional components that add new mathematical functions to the SMath Studio program, necessary for solving problems from various fields.
-
exportData.CSV("1:variable", "2:string")
Export "1:variable" into a "2:string".csv file; the file will be placed in the directory of the current SMath document. The function returns '1' if successful. -
exportData.CSV("1:variable", "2:string", "3:string")
Export "1:variable" into a "2:string".csv file; the file will be placed in the "3:string" path. The function returns '1' if successful. -
exportData.ODF("1:variable", "2:string")
Export "1:variable" as a "2:string".odf formula file; the file will be placed in the directory of the current SMath document. The function returns '1' if successful. -
exportData.ODF("1:variable", "2:string", "3:string")
Export "1:variable" as a "2:string".odf formula; the file will be placed in the "3:string" path. The function returns '1' if successful. -
exportData.ODS("1:variable", "2:string")
Export "1:variable" into a "2:string".ods spreadsheet; the file will be placed in the directory of the current SMath document. The function returns '1' if successful. -
exportData.ODS("1:variable", "2:string", "3:string")
Export "1:variable" into a "2:string".ods spreadsheet; the file will be placed in the "3:string" path. The function returns '1' if successful. -
fwrite("1:variable", "2:string")
Export "1:variable" strings into a "2:string" text file; the file will be placed in the directory of the current SMath document. The function returns '1' if successful. -
fwrite("1:variable", "2:string", "3:string")
Export "1:variable" strings into a "2:string" text file; the file will be placed in the "3:string" path. The function returns '1' if successful. -
importData.ODS("1:string", "2:string")
Import ODS spreadsheet data from "1:string" path; get all data from "2:string" sheet name. -
importData.ODS("1:string", "2:string", "3:string")
Import ODS spreadsheet data from "1:string" path; search data into "2:string" sheet name and "3:string" cell. -
importData.ODS("1:string", "2:string", "3:string", "4:string")
Import ODS spreadsheet data from "1:string" path; search data into "2:string" sheet name, from "3:string" cell to "4:string" cell.