1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>Input/Ouput Functions</TITLE>
</HEAD>
<BODY>
<H2>Input/Ouput Functions</H2>
<P>
<A HREF=index.html> Main Index </A>
<P>
<UL>
<LI> <A HREF=io_wavplay.html> wavplay </A> WAVPLAY
</LI>
<LI> <A HREF=io_wavrecord.html> wavrecord </A> WAVRECORD
</LI>
<LI> <A HREF=io_fopen.html> fopen </A> FOPEN File Open Function
</LI>
<LI> <A HREF=io_fclose.html> fclose </A> FCLOSE File Close Function
</LI>
<LI> <A HREF=io_fread.html> fread </A> FREAD File Read Function
</LI>
<LI> <A HREF=io_fwrite.html> fwrite </A> FWRITE File Write Function
</LI>
<LI> <A HREF=io_fflush.html> fflush </A> FFLUSH Force File Flush
</LI>
<LI> <A HREF=io_ftell.html> ftell </A> FTELL File Position Function
</LI>
<LI> <A HREF=io_feof.html> feof </A> FEOF End Of File Function
</LI>
<LI> <A HREF=io_fseek.html> fseek </A> FSEEK Seek File To A Given Position
</LI>
<LI> <A HREF=io_fgetline.html> fgetline </A> FGETLINE Read a String from a File
</LI>
<LI> <A HREF=io_fscanf.html> fscanf </A> FSCANF Formatted File Input Function (C-Style)
</LI>
<LI> <A HREF=io_imread.html> imread </A> IMREAD Read Image File To Matrix
</LI>
<LI> <A HREF=io_imwrite.html> imwrite </A> IMWRITE Write Matrix to Image File
</LI>
<LI> <A HREF=io_format.html> format </A> FORMAT Control the Format of Matrix Display
</LI>
<LI> <A HREF=io_setprintlimit.html> setprintlimit </A> SETPRINTLIMIT Set Limit For Printing Of Arrays
</LI>
<LI> <A HREF=io_getprintlimit.html> getprintlimit </A> GETPRINTLIMIT Get Limit For Printing Of Arrays
</LI>
<LI> <A HREF=io_save.html> save </A> SAVE Save Variables To A File
</LI>
<LI> <A HREF=io_dlmread.html> dlmread </A> DLMREAD Read ASCII-delimited File
</LI>
<LI> <A HREF=io_load.html> load </A> LOAD Load Variables From A File
</LI>
<LI> <A HREF=io_getline.html> getline </A> GETLINE Get a Line of Input from User
</LI>
<LI> <A HREF=io_sprintf.html> sprintf </A> SPRINTF Formated String Output Function (C-Style)
</LI>
<LI> <A HREF=io_printf.html> printf </A> PRINTF Formated Output Function (C-Style)
</LI>
<LI> <A HREF=io_fprintf.html> fprintf </A> FPRINTF Formated File Output Function (C-Style)
</LI>
<LI> <A HREF=io_disp.html> disp </A> DISP Display a Variable or Expression
</LI>
<LI> <A HREF=io_sscanf.html> sscanf </A> SSCANF Formated String Input Function (C-Style)
</LI>
<LI> <A HREF=io_xmlread.html> xmlread </A> XMLREAD Read an XML Document into FreeMat
</LI>
<LI> <A HREF=io_htmlread.html> htmlread </A> HTMLREAD Read an HTML Document into FreeMat
</LI>
<LI> <A HREF=io_urlwrite.html> urlwrite </A> URLWRITE Retrieve a URL into a File
</LI>
<LI> <A HREF=io_pause.html> pause </A> PAUSE Pause Script Execution
</LI>
<LI> <A HREF=io_csvread.html> csvread </A> CSVREAD Read Comma Separated Value (CSV) File
</LI>
<LI> <A HREF=io_csvwrite.html> csvwrite </A> CSVWRITE Write Comma Separated Value (CSV) File
</LI>
<LI> <A HREF=io_input.html> input </A> INPUT Get Input From User
</LI>
<LI> <A HREF=io_rawread.html> rawread </A> RAWREAD Read N-dimensional Array From File
</LI>
<LI> <A HREF=io_rawwrite.html> rawwrite </A> RAWWRITE Write N-dimensional Array From File
</LI>
<LI> <A HREF=io_wavread.html> wavread </A> WAVREAD Read a WAV Audio File
</LI>
<LI> <A HREF=io_wavwrite.html> wavwrite </A> WAVWRITE Write a WAV Audio File
</LI>
<LI> <A HREF=io_str2num.html> str2num </A> STR2NUM Convert a String to a Number
</LI>
</UL>
</BODY>
</HTML>
|