I have problem with Sizing and Cell arrays
Mostra commenti meno recenti
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 Commenti
Image Analyst
il 15 Set 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
il 16 Set 2018
Risposte (1)
Image Analyst
il 15 Set 2018
Is this what you want?
% Subtract
D = cell2mat(DCT)
output = D - load_value_41_44';
Categorie
Scopri di più su Data Type Conversion in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!