Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

output results to different excel sheets

1 visualizzazione (ultimi 30 giorni)
Linden
Linden il 15 Ago 2013
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Hi I want to output my results to different excel sheets. All sheets share the same prefix plus a number to distingush them. For example,
for i = 1:5
X=y(:,i);
xlswrite('output',X,factor_i);
end
How can I make Matlab create sheets like factor_1, factor_2,...
Thanks.

Risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 15 Ago 2013
Modificato: Azzi Abdelmalek il 15 Ago 2013
for i = 1:5
X=y(:,i);
xlswrite('output',X,sprintf('factor_%d',i);
end
%or you can use
strcat('factor_',num2str(i))
  2 Commenti
Linden
Linden il 15 Ago 2013
Thanks very much. I actually tried sprintf('factor_%s',i). Didn't work.
Azzi Abdelmalek
Azzi Abdelmalek il 15 Ago 2013
Modificato: Azzi Abdelmalek il 15 Ago 2013
% sprintf('factor_%s',i) is for characters
e.g
i='r'
sprintf('factor_%s',i)
% for numbers use
i=3
sprintf('factor_%d',i)

Questa domanda è chiusa.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by