Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

OK, this is true ?multiplying scalar 'k' by matrix 'v'

1 Ansicht (letzte 30 Tage)
Mary Jon
Mary Jon am 28 Sep. 2013
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
such as
Z = zeros(size(W1));
kernel = [Z, W1, Z; W3, Z, W4; Z, W2, Z];
filtered = conv2(vk, kernel, 'same');
vk = (1-w)*vk + filtered./W;
where 'k' is iteration
'v' is matrix
  2 Kommentare
Jan
Jan am 28 Sep. 2013
Bearbeitet: Jan am 28 Sep. 2013
How could we decide if "it is true"? It depends, on what you are exactly searching for.I do not see "k" in the code, so what does it mean, that it is a "iteration"? I cannot find "V" also.
Mary Jon
Mary Jon am 28 Sep. 2013
vk that not 'function' or variables;
'k' is iteration counter, 'v' is matrix

Antworten (1)

Image Analyst
Image Analyst am 28 Sep. 2013
I don't see v * k anywhere in your code, so I guess the answer is no.
  1 Kommentar
Mary Jon
Mary Jon am 28 Sep. 2013
I get this code from you(matlab answers) when asked you to write my equation ,where I told you 'k' iteration counter,'v' matrix!
yor answer was,
Z = zeros(size(W1));
kernel = [Z, W1, Z; W3, Z, W4; Z, W2, Z];
filtered = conv2(vk, kernel, 'same');
vk = (1-w)*vk + filtered./W;
why you write 'v' and 'k'as (vk)?

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by