I have a matrix BB = [-1 5 6;4 -3 2;5 6 -7]. How can i print the location(index) of the positive elelments using for loop and using while loop ?

5 次查看(过去 30 天)
I have this matrix BB = [-1 5 6;4 -3 2;5 6 -7]. I want to know how can I display the location of the positive elements using for loop and using while loop
  4 个评论
Fares Alfares
Fares Alfares 2018-7-24
I tried to do this i=[1:length(BB)] for BB = [-1 5 6;4 -3 2;5 6 -7] if (BB(i) >= 0) i end end it gave me :i =
1 2 3
and I tried to do
BB = [-1 5 6;4 -3 2; 5 6 -7]
i = [1:length(BB)]
for (BB(i)>= 0)
i
end
it gave me :BB =
-1 5 6
4 -3 2
5 6 -7
i =
1 2 3
for (BB(i)>= 0)
Error: Invalid expression. When calling a function or
indexing a variable, use parentheses. Otherwise, check for
mismatched delimiters.

请先登录,再进行评论。

采纳的回答

KSSV
KSSV 2018-7-25
BB = [-1 5 6;4 -3 2;5 6 -7] ;
[nx,ny] = size(BB) ;
for i = 1:nx
for j = 1:ny
if BB(i,j)>0
fprintf('%d %d %f\n',i,j,BB(i,j))
end
end
end
  3 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by