Cd

Pushd, popd, dirs in matlab

The following Matlab project contains the source code and Matlab examples used for pushd, popd, dirs. pushd, popd, and dirs implement a unix-style directory stack. It uses a global variable to hold the stack. Example usage: > cd myDir myDir> pushd( 'anotherDir' ) anotherDir> %excute commands here anotherDir> dirs    myDir anotherDir> popd myDir> % back to where you started

Matlab version of pushd & popd, both available in unix/linux and dos. adds some matlab specific feat in matlab

The following Matlab project contains the source code and Matlab examples used for matlab version of pushd & popd, both available in unix/linux and dos. adds some matlab specific feat . PUSHD(directory/file-spec) stores the current working directory and changes current directory to the one specified in the string directory-spec.
Subscribe to RSS - Cd