Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
edit-reducing the co-efficient
조회 수: 2 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
답변 (1개)
Walter Roberson
2012년 2월 4일
NewData = YourData;
idx = YourData >= threshold;
NewData(idx) = threshold - eps(threshold); %will be below the threshold
댓글 수: 5
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.
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!