operation array in cell
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
i have a problem. i have a cell A. cell A have 13*13 blocks (A{1,1},A{1,2},..., A{13,13})and every blocks have 8*8 pixels. i have matrix p 169*1 and matrix q 169*1.
i want to process them to find value A' = A*p + q.
example, A'{1,1} = (A{1,1}*p(1,1))+q(1,1).
next A'{1,2} = (A{1,2}*p(1,2))+q(1,2) and finally until A'{13,13}
3 comentarios
Walter Roberson
el 4 de Mzo. de 2013
You cannot do that. p and q are 169*1 so p(1,2) and q(1,2) are indexing out of range since the largest defined second index for p and q is 1.
Internazionale
el 4 de Mzo. de 2013
Internazionale
el 4 de Mzo. de 2013
Respuestas (1)
Andrei Bobrov
el 4 de Mzo. de 2013
Editada: Andrei Bobrov
el 4 de Mzo. de 2013
out = A';
for jj = 1:numel(out)
out{jj} = out{jj}*p(jj)+q(jj);
end
out = out';
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!