Vectorize two for loops

Risposte (2)

David Hill
David Hill il 19 Nov 2020
Modificato: David Hill il 19 Nov 2020
[i,j]=meshgrid(1:100,1:200);
TheOne=reshape(sum((Png1(:,i)-Png2(:,j)).^2),100,[]);

4 Commenti

Master Blabla
Master Blabla il 19 Nov 2020
Could You get a little simple solution?
David Hill
David Hill il 19 Nov 2020
Does not get any simpler.
Master Blabla
Master Blabla il 19 Nov 2020
It does not work correctly
Made a mistake. Try this.
[i,j]=meshgrid(1:100,1:200);
TheOne=reshape(sum((Png1(:,i)-Png2(:,j)).^2),200,[])';

Accedi per commentare.

CHENG QIAN LAI
CHENG QIAN LAI il 24 Nov 2020
[i,j]=ndgrid(1:100,1:200);
% 1 2 3 . . . 200
%---------------------------
% i= 1 1 1 . . . 1 | 1
% 2 2 2 . . . 2 | 2
% 3 3 3 . . . 3 | 3
% . . . | .
% . . . | .
% . . . | .
% 100 100 100 . . . 100 | 100
%---------------------------
% j= 1 2 3 . . . 200 | 1
% 1 2 3 . . . 200 | 2
% 1 2 3 . . . 200 | 3
% . . . | .
% . . . | .
% . . . | .
% 1 2 3 . . . 200 | 100
TheOne = i+j;

Categorie

Scopri di più su Programming in Centro assistenza e File Exchange

Tag

Richiesto:

il 19 Nov 2020

Risposto:

il 24 Nov 2020

Community Treasure Hunt

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

Start Hunting!

Translated by