在MATLAB中,可以使用`pwd`函数来获取当前工作路径。该函数返回一个字符串,表示当前工作路径。例如:
currentPath = pwd; disp(currentPath);
运行该代码,将打印出当前工作路径。