Finding multiple values in matrix

2 ビュー (過去 30 日間)
Thang  Le
Thang Le 2013 年 3 月 12 日
Hi,
I have an fMRI scan file with activation values of voxels (voxels can be located by specific coordinates). Let's say v is the 72x72x33 matrix representing information from the scan file. I can easily find a single value for a given combination of coordinates. For instance, v(x1,y1,z1) would give me the value of the voxel at location (x1,y1,z1). However, the challenge is that I need to get the mean value of multiple voxels. Let's say A (3x250 matrix) represents all the voxel coordinates of interest (so there are 250 voxels total). Could you please tell me how to get the average value of all these 250 voxels from v?
Many thanks!
  1 件のコメント
Image Analyst
Image Analyst 2013 年 3 月 15 日
I'd probably try using meshgrid to make a list of all possible voxel coordinates and then binarize that with the equation for a sphere. Then sum up the image inside the binary image.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2013 年 3 月 12 日
編集済み: Image Analyst 2013 年 3 月 12 日
theSum = 0;
count = 0;
for k = 1:size(A, 2)
theSum = theSum + v(A(1, k), A(2, k), A(3, k));
count = count + 1;
end
theMeanIntensity = theSum / count
Even though it's a for loop, it will be very fast with only 250 iterations. If you do want to try the vectorized (linear indexing) method, you can see the help on sub2ind:
linearInd = sub2ind(arraySize, dim1Sub, dim2Sub, dim3Sub, ...) returns the linear index equivalents to the specified subscripts for each dimension of an N-dimensional array of size arraySize. The arraySize input is an n-element vector that specifies the number of dimensions in the array. The dimNSub inputs are positive, whole number scalars or vectors that specify one or more row-column subscripts for the matrix.
though there may not be much, if any, noticeable speed up.

その他の回答 (3 件)

Bart Boesman
Bart Boesman 2013 年 3 月 12 日
編集済み: Bart Boesman 2013 年 3 月 12 日
Hi,
'Logical indexing' (<http://www.mathworks.nl/help/matlab/math/matrix-indexing.html#bq7egb6-1>) and 'sum() or mean()' should get you on the right track, I guess.
Bart

Thang  Le
Thang Le 2013 年 3 月 12 日
You guys are brilliant! Thank you for the quick responses.

Thang  Le
Thang Le 2013 年 3 月 15 日
Hi,
I have a follow-up question. Since matrix A is actually a sphere, depending on its center and radius, some of this sphere may lie outside of v, in which case an error occurs when a voxel space outside of v is accessed. Is there any way I can get the mean for only valid values?
A rough solution I thought of was to get the values in 250-by-1 matrix (each row is an activation value from v corresponding to the same row of coordinates in A), then use nanmean to exclude the NaN's from the mean. However, I'm not sure how to get this 250x1 matrix from the code you suggested. Could you help?
Thanks,
Le

カテゴリ

Help Center および File ExchangeGeometric Transformation and Image Registration についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by