Running 64 bit exe from 32 bit MATLAB
古いコメントを表示
I have MATLAB 32bit installed on Win7 64bit OS. Is it possible to call external 64 bit exe using system command (or something else)?
回答 (2 件)
Walter Roberson
2012 年 11 月 10 日
1 投票
Yes, system() starts up a new process for the command you give it.
Why not simply try it?
system('"C:\Program Files\Internet Explorer\iexplore.exe" &') % 64 bit
system('"C:\Program Files (x86)\Internet Explorer\iexplore.exe" &') % 32 bit
Btw. You can install the 64 bit version of Matlab also, when you have a license for the 32 bit version.
カテゴリ
ヘルプ センター および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!