how do I create many excel file

조회 수: 2 (최근 30일)
MMSAAH
MMSAAH 2017년 6월 2일
댓글: MMSAAH 2017년 6월 2일
Hello, I have 100 MR images and I want to create excel file for each image containing some results of traitement...So I want to have 100 excel file finally !! I know that xlswrite create one excel sheet but If want 100 ?
Could any one help me !! I will be grateful !!

채택된 답변

Stephen23
Stephen23 2017년 6월 2일
How to read multiple files is explained extensively in the documentation, on this forum, and in the wiki:
etc
The first thing to decide is if you want to generate the file names, or if you want to read the names of existing files:
  • generate names: use sprintf and fullfile.
  • read names: use dir and fullfile.
You can also find some examples with my FEX submission natsortfiles:
  댓글 수: 1
MMSAAH
MMSAAH 2017년 6월 2일
This code did solve my problem
for k = 1:100
Filename = sprintf('matlab_%d.xls', k);
xlswrite(Filename, [% metric value])
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by