how to skip and not add to matrix

1 回表示 (過去 30 日間)
liu James
liu James 2017 年 6 月 27 日
編集済み: Geoff Hayes 2017 年 6 月 27 日
When performing an intersect function there will be times where the value of D=[] since it doesn't exist in date2. In this case I would like to skip adding the values into the array. I tried this way, but it seems to not want to skip to the next increment value and still add to the array. How can I make it skip if D=[].
for i=1:49
[D,ia,ib]=intersect(date1(i),date2)
if D==[]
p=1
else
E(end+1,:)=[D,CUAB(i),CUSB(ib)]
end
end

採用された回答

Geoff Hayes
Geoff Hayes 2017 年 6 月 27 日
編集済み: Geoff Hayes 2017 年 6 月 27 日
liu - use isempty instead of trying to compare D to the square brackets
if ~isempty(D)
E(end+1,:)=[D,CUAB(i),CUSB(ib)];
end
Note that if you try to evaluate
D == []
then the answer is
ans =
[]
Since this is not the true logical, then your code will always evaluate the else body of your if/else code.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by