필터 지우기
필터 지우기

Finding the slope of two consecutive numbers in a matrix

조회 수: 1 (최근 30일)
Islam
Islam 2013년 11월 28일
댓글: Islam 2013년 11월 29일
say I have this matrix (j,w)= (3,4)
A =
[ 8 10 2 20
2 4 5 10
3 5 0 4]
I want to find the slope between each two consecutive elements in the matrix and save the result in a different matrix B
e.g
B=
[ f(10)-f(8)/10-8 , f(2)-f(10)/10-2 , f(20)-f(2)/20-2
f(4)-f(2)/4-2 , f(5)-f(4)/5-4 , f(10)-f(5)/10-5
f(5)-f(3)/5-3 , f(0)-f(5)/0-5 , f(4)-f(0)/4-0 ]
f is the sqrt of the number.
I found the gradient function but I am not sure how to use it ..

채택된 답변

Image Analyst
Image Analyst 2013년 11월 28일
Does this work:
A =...
[ 8 10 2 20
2 4 5 10
3 5 0 4]
squareRootA = A .^ 0.5
num = diff(squareRootA, 1, 2)
den = diff(A, 1, 2)
results = num ./ den
  댓글 수: 2
Image Analyst
Image Analyst 2013년 11월 28일
By the way, it's not the slope. I don't know what it is but I know it's not the slope.
Islam
Islam 2013년 11월 29일
yes, I figured later.
Thanks a lot, that helped much

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

추가 답변 (0개)

카테고리

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