Storing data from for loop

조회 수: 2 (최근 30일)
Shaun
Shaun 2015년 1월 27일
편집: Stephen23 2015년 1월 27일
Hi all,
I'm new to Matlab and trying to create a for loop that will save information gathered from a DICOM file into a mtrix for further use. My code so far is as follows...
[FileName PathName] = uigetfile('*.*','Select DICOM File', 'MultiSelect','on');
im1=dicomread([PathName FileName{1}]);
[r c]=size(im1);
I=[];
order=[];
for s=1:length(FileName)
info=dicominfo([PathName FileName{s}]);
order=info.SliceLocation;
I(:,:,s)= [PathName, FileName(s), order]
end
I get the following error when running the code...
Conversion to double from cell is not possible.
Error in Untitled3 (line 11)
I(:,:,s)= [PathName, FileName(s), order]
Any help would be much appreciated. I apologise if any forum rules have not been followed.
  댓글 수: 1
Stephen23
Stephen23 2015년 1월 27일
Note it is recommended to use fullfile rather than simply concatenating the path and filename strings.

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

채택된 답변

Stephen23
Stephen23 2015년 1월 27일
편집: Stephen23 2015년 1월 27일
You define I to be of class double with the line I=[];, and you then try to allocate some data into it that is of class cell. Thus the error message.
One alternative it to not preallocate this variable (or even the variable order) and just refer to them first in the loop:
[FileName,PathName] = uigetfile('*.dcm','Select DICOM File', 'MultiSelect','on');
for n = numel(FileName):-1:1
dcinfo = dicominfo(fullfile(PathName,FileName{n}));
%order = dcinfo.SliceLocation; % not in the documentation.
out{n} = fullfile(PathName,FileName(n));
end
Note how I looped from N->1, so that the cell array is correctly sized from the very first iteration (a kind of preallocation ).

추가 답변 (1개)

Sara
Sara 2015년 1월 27일
Try replacing FileName(s) with FileName{s}

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by