Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: can't fopen????
Date: Tue, 22 Jul 2008 03:00:06 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 19
Message-ID: <g63ifm$rug$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1216695606 28624 172.30.248.37 (22 Jul 2008 03:00:06 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Tue, 22 Jul 2008 03:00:06 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1446367
Xref: news.mathworks.com comp.soft-sys.matlab:480826



hi all,
   I used matlab 14.4 to transfer M-file to c code.
The original M-file is             
fid = fopen('tx_para.txt','r')  &#61671; It works 
   But after it transfer to c code, it shows error:
??? Undefined function or method 'deploywhich' for input 
argument of type 'char'.
Error in = = > fopen at 16
Error in = = > get_tdv_params at 230
Error in = = > tdv at 61
Error in = = > top at 12

Due to matlab 14.4, I can not export every M-file to C-
file by one-one mapping. I can only export the top.m, 
which means I can not really &#8220;see&#8221; the get_tdv_params 
after transfer /_\
How should I do?