Assigning a variable to any value in a matrix

조회 수: 30 (최근 30일)
roram
roram 2016년 4월 27일
댓글: dpb 2016년 4월 27일
Hi,
I am having trouble on a project involving matrices.
An example with simplified but similar code:
Matrix = [0 1 4; 4 1 3];
for x = 1:10
if x + y == 5
My goal is to have y be ANY value in the original matrix, so the if statement is true if x + ANY Matrix Value is equal to 5.
Is this possible without using an extra for loop?
Thanks!

답변 (3개)

Star Strider
Star Strider 2016년 4월 27일
편집: Star Strider 2016년 4월 27일
You came close to answering it yourself. There is an any funciton.
Experiment with this to see if it does what you want:
Matrix = [0 1 4; 4 1 3];
y = Matrix;
for x = 1:10;
logic = any(x + y == 5)
end
EDIT To see the results of the comparison for different values of ‘x’, tweak the code to store the values, and display them in an array:
Matrix = [0 1 4; 4 1 3];
y = Matrix;
for x = 1:10;
logic(x) = nnz(any(x + y == 5));
end
Result = [[1:10]', (logic > 0)']
Result =
1 1
2 1
3 0
4 1
5 1
6 0
7 0
8 0
9 0
10 0

Jon
Jon 2016년 4월 27일
Try this
for x = 1:10
if sum(x + Matrix(:) == 5) > 0
disp(x)
end
end
  댓글 수: 2
roram
roram 2016년 4월 27일
Is there a way to store the Matrix index that fulfilled the condition?
dpb
dpb 2016년 4월 27일
There are multiple possible locations...but, use logical array or find or the like--
>> x=1; % define an example x
>> (x+Matrix==5) % logical array
ans =
0 0 1
1 0 0
>> [i j]=find(x+Matrix==5); % return locations
>> disp([i j])
2 1
1 3
>>
Again, need more detail on what your end result is to be to have any real definitive implementation suggestions.

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


dpb
dpb 2016년 4월 27일
Matrix = [0 1 4; 4 1 3];
for x = 1:10
if any(x+Matrix(:)==5)
...
NB: use of : to treat array as a vector such that any will return a single result.
You could possibly eliminate the loop entirely depending on what the resulting operation is.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by