ParallelC

バージョン 1.2.0.0 (1.8 KB) 作成者: Geoffrey
This file allows you to access a virtual Parallels drive while running Matlab on a MAC OSX.
ダウンロード: 355
更新 2009/11/18

ライセンスの表示

I run Matlab on an Intel MACPro through X11 in OSC and through a vista virtual machine using Parallels. This program simplifies directory switching so I can easily access the virtual drives created by Parallels.

Parallels creates a directory in '/tmp' that provides access to any virtual drives. This directory is always numeric and changes whenever parallels is restarted. Thus, the script must be able to search for the proper directory. This code supplies two simple methods for achieving that goal.

function []=ParallelC()
R=dir('/tmp'); % Get directory names
for n=1:length(R), % Scan through directory names
R1=exist(['/tmp/', R(n).name, '/C/']); % See if the directory exists.
if R1==7, % Exist returns 7 if A is a directory
eval(['cd /tmp/', R(n).name, '/C/']); % Go to the appropriate directory
break, end % Program is finished
end

引用

Geoffrey (2024). ParallelC (https://www.mathworks.com/matlabcentral/fileexchange/25832-parallelc), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2007b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersSearch Path についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.2.0.0

Put code into description.

1.1.0.0

Changed the file to a function so it relies only on local variables.

1.0.0.0