sp_make_dir.m
来自「论文Beyond Bags of Features源代码」· M 代码 · 共 11 行
M
11 行
function [ ] = sp_make_dir( filePath )
%MAKE_DIR Summary of this function goes here
% Detailed explanation goes here
[dirPath fileName] = fileparts(filePath);
if(isdir(dirPath)==0)
mkdir(dirPath);
end
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?