如何使用变量在Matlab中创建矩阵?

时间:2019-02-21 08:09:34

标签: matlab netcdf

我有四个使用NetCDF数据创建的变量,分别是 高度,纬度,经度和日期。 现在,我想用这些变量作为一个列创建一个矩阵,然后忽略包含“ NAN”数据的值。

我已经分别进行了此操作,但是我想要一个矩阵。 我必须在多个文件上运行此过程。

for i = 1:length(theFiles)% Loop for each nc-file
    %Select Single cycle
    FileName = theFiles(i).name; 

    FullPathName=fullfile(folder_name, FileName); %reading file one by one
    disp(['File selected:', FullPathName])


    [Height,time,Lat,Long]=read_netcdf(FullPathName);  % Read the selected nc file 
     lattiude=Lat;
     longitude=Long;

     B = [Height,time,Lat,Long];   
    end 

还有一件事情,总数没有。的数据为579X1所有变量,但是当我从Height中删除Nan值时,其尺寸减小为45X1 现在我要做的是减少所有变量的高度w.r.t Height。

我有矩阵,现在想删除所有包含Nan Value的行

  

NaN 736536.710457717 28.3771283105297 69.6958150783291   NaN 736536.710457858 28.3778490697636 69.6956231314990
  75 736536.710458284 28.3800119048871 69.6950471308031   75 736536.710458426 28.3807327583405 69.6948551510433   NaN 736536.710458000 28.3785699096006 69.6954311612445   NaN 736536.710458142 28.3792909110158 69.6952391459993

1 个答案:

答案 0 :(得分:0)

不确定这是否是您要的,但是您可以像这样增加数组的大小:

for i = 1:n
   B = [B; newValue];
end