필터 지우기
필터 지우기

d Sav/ d WI

조회 수: 1 (최근 30일)
abdulhadi khalifa
abdulhadi khalifa 2012년 4월 2일
Hi, How, I can create a code in matlab to calculate the slope at every point in the curve if I have experemnt data
Sav{0.47 0.532 0.588 0.662 0.736 0.772}
Wi{0.254 0.539 1.071 3.349 12.72 26.54} I want to calculate Fo= d Sav / d Wi
Thanks
  댓글 수: 1
Walter Roberson
Walter Roberson 2012년 4월 2일
Your duplicate questions on this topic have been deleted.

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

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2012년 4월 2일
sw = reshape([0.47 0.254 0.532 0.539 0.588 1.071 0.662 3.349 0.736 12.72 0.772 26.54 ],2,[])
dsw = diff(sw,1,2)
Fo = dsw(1,:)./ dsw(2,:)
OR
Fo = diff(Sav)./diff(Wi)
  댓글 수: 1
abdulhadi khalifa
abdulhadi khalifa 2012년 4월 2일
It does not give the same answer as in the paper the answer in the paper are
Hi, How, I can create a code in matlab to calculate the slope at every point in the curve if I have experemnt data
Sav{0.47 0.532 0.588 0.662 0.736 0.772}
Wi{0.254 0.539 1.071 3.349 12.72 26.54}
The relation between Sav in Y direction and Wi in X direction is a curve so I want to calculate the slope at every point.
I want to calculate Fo which is equal to
Fo= d Sav / d Wi
The answer in the paper for Fo are { 0.553 0.171 0.0875 0.0234 0.00536 0.00265}
Thanks

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

카테고리

Help CenterFile Exchange에서 ROC - AUC에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by