how can add lamda value to matrix in image processing?
Mostrar comentarios más antiguos
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 comentarios
Image Analyst
el 21 de En. de 2021
Editada: Image Analyst
el 21 de En. de 2021
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
el 25 de En. de 2021
Noor Abbas
el 27 de En. de 2021
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Simulink en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!