필터 지우기
필터 지우기

Renaming parameters in a loop, Comparing Z-Scores

조회 수: 1 (최근 30일)
A
A 2011년 8월 1일
I have a 48x64x41 array where the dimensions are vertical x horizontal x time. I need to compare the z-score array values for times 1 to 41, ie:
zscores(array(:,:,i)) for i=1:41
and find the time of the array with the greatest values.
I am attempting to use a for loop to assign the array at different times to a parameter:
for i=1:41 z=zscore(array(:,:,i)) end
However, obviously like that z is reassigned each time the loop iterates. What I would like to do is have 41 new "z"'s, corresponding to each time.
i.e
at the end of the for loop there will be z1 through z41, corresponding respectively to zscore(array(:,:,1)) to zscore(array(:,:,41).
I then plan to compare these 41 results to find the time at which the array values are the greatest.
Therefore, my questions are: -How can I change the value of z to be z(i), that is z1 through z41 are the outputs at the end of the for loop?
-Does anyone have a smarter suggestion as to how I can obtain the location time of the greatest array values?
Thank you in advance for your replies!

채택된 답변

the cyclist
the cyclist 2011년 8월 1일
This is better. [I had not realized that zscore() is a MATLAB function.]
arraySize = size(array);
z = zeros(size(array));
for i = 1:41
z(:,:,i) = zscore(array(:,:,i));
end

추가 답변 (1개)

the cyclist
the cyclist 2011년 8월 1일
Use a cell array:
% Preallocate
z = cell(41,1);
% Run loop
for i=1:41
z{i} = zscore(array(:,:,i))
end
  댓글 수: 3
Walter Roberson
Walter Roberson 2011년 8월 1일
You did not use the code that the cyclist did. the cyclist used {i} in the assignment, but you used (i) in the assignment.
the cyclist
the cyclist 2011년 8월 2일
In fairness to Amina, I did several quick edits to this answer, while I (too?) hastily posted answers, before I realized that each "zi" was not expected to be a scalar. In the first incarnation, I did not use cell arrays. [Regardless, my other answer, which was accepted, was better.]

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

Community Treasure Hunt

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

Start Hunting!

Translated by