欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[MATLAB]读写指定文件夹下的mat数据文件

程序员文章站 2024-03-13 16:39:21
...

写出路径与文件名

data_plus=[path_bina file_plus];

load(fullfile(data_plus));

具体代码

for tau=1:5
for t=1:k-tau
    close all;             

    t1=t+tau;     di=5;   
    
dir_bina=['tau',num2str(tau)]; 
path_bina=['/media/zheng/one_code1/amoeboid/process_tip/data/' dir_bina '/']; 

 v(:,:)=img_1d_pro(:,:,t);    [FM,FN]=size(v);

file_plus=['plus_t',num2str(t),'tau',num2str(tau),'.mat']; 
data_plus=[path_bina file_plus];  
 load(fullfile(data_plus)); 
file_plural=['plural_t',num2str(t),'tau',num2str(tau),'.mat']; 
data_plural=[path_bina file_plural];   
 load(fullfile(data_plural)); 
相关标签: 常用命令