matlab中ptemp = matlabpath; ind = strfind(ptemp,';'); filepath = ptemp(ind(end)+1:end);什么意思
时间: 2023-05-19 19:01:57 浏览: 212
C++ 中boost::share_ptr智能指针的使用方法
这段代码的意思是获取当前 Matlab 环境中最后一个路径的字符串。具体来说,它首先获取 Matlab 的路径,然后在路径中查找分号,找到最后一个分号的位置,然后将该位置之后的字符串作为 filepath 变量的值。
阅读全文