how can add lamda value to matrix in image processing?
이전 댓글 표시
How can add lamda to matrix in image processing ?
I have lamda value, and I need to add it to the matrix, all Z,H,B ,A are matrixs
lamda=0.6;
Z= lamda+H*lamda^(-1)*B+lamda+A;
is that right?
댓글 수: 3
Image Analyst
2021년 1월 21일
편집: Image Analyst
2021년 1월 21일
Which matrix(es) do you want to add it to? Your equation adds it in twice plus it looks like you're doing a matrix multiplication of H and B so I think you're doing this:
Z = (H*B) / lambda + A + 2 * lambda; % Is this what you want?
And what does this have to do with Simulink???
Noor Abbas
2021년 1월 25일
Noor Abbas
2021년 1월 27일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Neighborhood and Block Processing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!