looping through multiple numbers

3 ビュー (過去 30 日間)
C.G.
C.G. 2022 年 5 月 26 日
コメント済み: Walter Roberson 2022 年 5 月 26 日
I have written a script, which tells me which rows of A are above the threshold, and then the difference between the numbers in column 1 of the variable 'abovethresh'.
This works fine, however I now want to write a loop which gives me this output, for avsize = 1:1:45. So I want it to apply the new threshold and do the same thing. I've tried to get a small section of this working to build on but I am getting the error below.
%single value
avsize = 10; %define avalanche threshold
abovethresh = A(A(:, 2) > 10,:);
wait_time = diff(abovethresh(:,1));
wait_time = wait_time(wait_time >15,:);
%loop
avsize = [1:1:45]
for i = 1:length(avsize)
a_t(i) = A(A(:,2) > avsize,:);
end
The logical indices in position 1 contain a true value outside of the array bounds.

採用された回答

Walter Roberson
Walter Roberson 2022 年 5 月 26 日
a_t(i) = A(A(:,2) > avsize(i),:);
  6 件のコメント
C.G.
C.G. 2022 年 5 月 26 日
編集済み: C.G. 2022 年 5 月 26 日
so are you saying I need to change the name of w_t(i) so it is not the same as the line above?
If i do that I get exactly the same error message.
Walter Roberson
Walter Roberson 2022 年 5 月 26 日
all_w_t{i} = w_t(w_t >15,:);

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGPU Computing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by