What is wrong with this code?

2 ビュー (過去 30 日間)
Holmbrero
Holmbrero 2021 年 1 月 20 日
コメント済み: Holmbrero 2021 年 1 月 21 日
Why is this code not exchanging all negative numbers in Raddidifference and Truedist to NaN? Size1 is just the size of the cell array.
And also, can it be done without looping?
for n=1:Size1(2)
for k=1:Size1(1)
for i=length(Radiidifference{k,n})
R{k,n}=Radiidifference{k,n}
if R{k,n}(i,1)<0
Radiidifference{k,n}(i,1) = NaN
Truedist{k,n}(i,1:2) = NaN
end
end
end
end
Any help would be greatly appriciated!

回答 (1 件)

Bob Thompson
Bob Thompson 2021 年 1 月 20 日
I would think you could do this with cellfun and some logic, but I could be wrong.
cellfun(@(s) s((1:end)<0,1) = NaN,Radiidifference);
cellfun(@(s) s(Radiidifference{s}==NaN)=NaN,Truedist);
I haven't tested this, and I'm specifically not sure about the second portion, but the concept should be sound.
It technically still loops, that's what cellfun does, but it does clean things up a bit.
  1 件のコメント
Holmbrero
Holmbrero 2021 年 1 月 21 日
Thank you!
I'll give it a go.
/Anders

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by