Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
how to store computed value in xlsx file???
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am calculating homogeneity by using following code
im=imread('abc.jpg');
I=nlfilter(rgb2gray(im),[3 3],'std2');
homogeneity = graycoprops(graycomatrix(I), 'Homogeneity');
disp(homogeneity);
values1 = {Entropy,Contrast,Energy,homogeneity}; headers1 = {'Entropy','Contrast','Energy','homogeneity'}; xlswrite('extract2.xlsx', [headers1; values1]);
but it is not stored in xlsx file so plz help me to store this value???
1 Commento
Titus Edelhofer
il 20 Gen 2015
Hi Ajay,
why not? Using xlswrite is correct. Do you get an error? and yes, which one?
Titus
Risposte (0)
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!