Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

edit-reducing the co-efficient

조회 수: 2 (최근 30일)
kash
kash 2012년 2월 4일
마감: MATLAB Answer Bot 2021년 8월 20일
I have an image i wanr to reduce the co-efficient by apply a thershold value,i want to take co-efficient below that thershold value..please help

답변 (1개)

Walter Roberson
Walter Roberson 2012년 2월 4일
NewData = YourData;
idx = YourData >= threshold;
NewData(idx) = threshold - eps(threshold); %will be below the threshold
  댓글 수: 5
Walter Roberson
Walter Roberson 2012년 2월 4일
Ah, I missed one of my notes. The threshold value to use is
0.624525
This information was found on form A557(G).
Carry on.
kash
kash 2012년 2월 4일
Thanks walter

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by