matlab
matlab
(OP)
i need that one of the function in matlab will accept as a parameter a text file (an output from a c program) and process it, there is a way to do it?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: matlab
The file management in Matlab is quit similar to C. Type at the workspace prompt:
>> help fopen
>> help fread
>> help fwrite
>>help fprintf
>>help fseek
>>help fgets
>> help ftell
and use it e.g.
new_file='myfile';
fid=fopen(new_file,'r');
Then visit my web-site http://www.geocities.com/bstex2001