how to pick element by element

조회 수: 1 (최근 30일)
Offroad Jeep
Offroad Jeep 2016년 2월 5일
편집: Stephen23 2016년 2월 5일
A = magic(3)
kindly tell me how i can pick one by one element in same matrix A then do some mathematical operation if it satisfies the condition the element is replaced by new value else it remains the same for example mathematical operation is A + 10, if A+10 is >12 replace other wise remain same as initial value,then second then third..........
thanks
  댓글 수: 2
Stephen23
Stephen23 2016년 2월 5일
What operation do you wish to perform?
Offroad Jeep
Offroad Jeep 2016년 2월 5일
I am trying to simulate ferromagnet in which i think this logic will be helpful in flipping the moments

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

답변 (1개)

Stephen23
Stephen23 2016년 2월 5일
편집: Stephen23 2016년 2월 5일
Why not just use logical indexing:
>> A = magic(3)
A =
8 1 6
3 5 7
4 9 2
>> A(A>3) = 0
A =
0 1 0
3 0 0
0 0 2

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by