ParallelC

This file allows you to access a virtual Parallels drive while running Matlab on a MAC OSX.
355 Downloads
Updated 18 Nov 2009

View License

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

Cite As

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

MATLAB Release Compatibility
Created with R2007b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Search Path in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
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