the loop does not display results
7 次查看(过去 30 天)
显示 更早的评论
Hello! There is a matrix and I need to find the first value less than 90
clear all
close all
X=[ 80 90 100 110 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20]' ;
[~,loc]=max(X); % search j
i=1:length(X(:,1)); % search i
j=loc;
while X(i,j)>90
jx(i)=j(i)+1 % find out how many j are running in iteration 1
end
jx is not shown at all, although the condition is true
while X(i,j)<90
jy(i)=j(i)-1
end
first cycle find out the quantity j while condition X> 90 at each iteration
second cycle find out the quantity j while condition X <90 at each iteration
and the problem I do not see jx and jy
2 个评论
Adam
2020-1-27
i and j are vectors so
while X(i,j)
will not do what you want. You can either loop around all the values testing the condition on each or you can use a vectorised approach.
X(i,j) < 90
returns a logical 8x9 array with a 1 (true) in the places that fulfil the condition and 0 otherwise. I'm not really sure what you want jy to output though since as it currently is it doesn't make sense as j is a row vector and i an 8x9 array.
回答(1 个)
Philippe Lebel
2020-1-27
编辑:Philippe Lebel
2020-1-27
You are not looping over the values of "i" nor "j"
i=1:length(X(:,1))
i =
1 2 3 4 5 6 7 8
j =
4 4 4 4 4 4 4 4 4
If you try to evaluate X(i,j), it is equivalent to say that you try to evaluate X([1 2 3 4 5 6 7 8], [4 4 4 4 4 4 4 4 4])
If you want to do what i think you want to do, here is the code:
clear all
close all
X=[ 80 90 100 110 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20
80 90 100 150 100 95 90 20]' ;
[~,loc]=max(X); % search j
j=loc;
for i = 1:length(X(:,1))
for k = 1:length(j)
jx(i)=j(i)+1 % find out how many j are running in iteration 1
if X(i,j(k))>90
break
end
end
if X(i,j(k))>90
break
end
end
this is not optimal but it is easier to understand (i think)
3 个评论
Philippe Lebel
2020-1-27
this is not relevant to the question asked in this post.
I don't know what is the intent behind your code so i don't know how to respond to this.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!