Effacer les filtres
Effacer les filtres

how to convert empty double into zeros

7 vues (au cours des 30 derniers jours)
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD le 8 Août 2018
Commenté : MAHMOUD ALZIOUD le 8 Août 2018
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 commentaires
Stephen23
Stephen23 le 8 Août 2018
Modifié(e) : Stephen23 le 8 Août 2018
"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 le 8 Août 2018
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

Connectez-vous pour commenter.

Réponse acceptée

Stephen23
Stephen23 le 8 Août 2018
if isempty(Quad)
Quad = zeros(1,31);
end
  1 commentaire
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD le 8 Août 2018
man you are amazing, thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by