• 大小: 0M
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-04
  • 语言: Matlab
  • 标签: 其他  

资源简介

open_file.m

资源截图

代码片段和文件信息

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% name       :open_file
% function   :打开文件,获取谱数据
% parameter  :无
% return     :pu_data----谱数据,列向量
% author     :逐临
% time       :2018/1/4
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function pu_data=open_file()
%% 获取文件路径和文件名
[filenamepathnamefilterindex]=uigetfile(...
    {‘*.txt‘‘文本文件(*.txt)‘;‘*.mca‘‘二进制文件(*.mca)‘;‘*.pu‘‘谱文本(*.pu)‘;‘*.*‘‘All File(*.*)‘}...
    ‘File Selector‘);
%% 判断文件名和文件路径是否为空
if isequal(filename0) ||isequal(pathname0)
    pu_data=0;
    return;
end
%% 读取谱数据
fpath=[pathname file

评论

共有 条评论