フィルターのクリア

Parfor Can not convert cell to double

3 ビュー (過去 30 日間)
Burak Alakus
Burak Alakus 2020 年 6 月 22 日
コメント済み: Burak Alakus 2020 年 6 月 22 日
Hello guys.
I have a problem with parfoor loop usage.
I have cell including protein sequences and their ids. I want to consider the sequences only and i need to add sequences to the another cell.
The code below is working
i = 1
while i < length(sampleProtein)
for k=2:2:length(sampleProtein)
X(i,:) = sampleProtein(k)
i = i+1
end
end
Yet, when i use parfor it gives me an error "Conversion to double from cell is not possible"
parfor i=1:length(sampleProtein)
for k=2:2:length(sampleProtein)
X(i,:) = sampleProtein(k)
end
end
Can you guys help me out?

採用された回答

Walter Roberson
Walter Roberson 2020 年 6 月 22 日
parfor i=1:length(sampleProtein)
X{i} = sampleProtein{2*i};
end
  4 件のコメント
Walter Roberson
Walter Roberson 2020 年 6 月 22 日
But probably you should just skip the parfor and do
X = sampleProtein(2:2:end);
Burak Alakus
Burak Alakus 2020 年 6 月 22 日
Thank you again mate. I will check it.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParallel for-Loops (parfor) についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by