dear all I have an empty double matrix called Quad, this Quad supposed to be a double with size of 1*31 zeros. how can i please ask matlab that if it finds any empty double convert it to zeros. my code is the following and it says it does not work on double !
idx_9 = cellfun('isempty', Quad);
Quad(idx_9) = {zeros(1,31)};

댓글 수: 2

Stephen23
Stephen23 2018년 8월 8일
편집: Stephen23 2018년 8월 8일
"I have an empty double matrix called Quad"
Then why are you trying to use cellfun, which only works on cell arrays?
Rather than describing your data, please upload it using the paperclip button.
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD 2018년 8월 8일
it is not data, it is an output, the output must be in the size of 1*31, but since there was no data to analyze then i still receive empty double, i am using the cellfun because i do not know what is the double fun here instead

댓글을 달려면 로그인하십시오.

 채택된 답변

Stephen23
Stephen23 2018년 8월 8일

1 개 추천

if isempty(Quad)
Quad = zeros(1,31);
end

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Cell Arrays에 대해 자세히 알아보기

질문:

2018년 8월 8일

댓글:

2018년 8월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by