I have problem with Sizing and Cell arrays
Afficher commentaires plus anciens
here I have a variable which has this size:

and then I have this :

How can I reshape load_value_41_44 , so I could do this : DCT - load_value_41_44
note that All DCT rows will get value in future loops and all of them will be 95*1
2 commentaires
Image Analyst
le 15 Sep 2018
But load_valu_41_44 is 672 which is not a multiple of 95 so how can you subtract load_value_41_44 from each cell of DCT?
Baran Mehrdad
le 16 Sep 2018
Réponses (1)
Image Analyst
le 15 Sep 2018
Is this what you want?
% Subtract
D = cell2mat(DCT)
output = D - load_value_41_44';
Catégories
En savoir plus sur Data Type Conversion dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!