Well, your lbp cell array has a vector in each cell! Anyway, I'd prefer to create a table and then use writetable function like the following.
C = [Entropy feature lbp Mean name];
T = cell2table(C(2:end,:),'v',C(1,:));
writetable(T,'dummy1.csv')
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!