⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pisabsolutepath.m

📁 利用Stateflow 进行嵌入式代码开发很好用
💻 M
字号:
function bool = pIsAbsolutePath(thisPath)
%PISABSOLUTEPATH Returns true if the path is absolute.
%

%   Copyright 2005 The MathWorks, Inc.
%   $File: $
%   $Revision: $
%   $Date:  $

bool = 1;

if isempty(thisPath)
    return
end

if(thisPath(1)=='.')
    bool = 0;
else
    if(ispc && length(thisPath)>=2)
        bool = (thisPath(2)==':') | (thisPath(1)=='\');
    else
        bool = thisPath(1)=='/';
    end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -