I have problem with Sizing and Cell arrays
Show older comments
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 Comments
Image Analyst
on 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
on 16 Sep 2018
Answers (1)
Image Analyst
on 15 Sep 2018
Is this what you want?
% Subtract
D = cell2mat(DCT)
output = D - load_value_41_44';
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!