Matrix multiplication gives different result than manual dot products with each column
Mostra commenti meno recenti
N = 1000;
B = 10;
C = 2;
x = randn(N,B);
b = randn(B,C);
matMult = x * b;
dotProd = [x*b(:,1), x*b(:,2)];
isequal(matMult, dotProd) %==0
mean(matMult(:) - dotProd(:)) % approaches 0
Does anyone know why these two expressions don't give the same answer?
Risposta accettata
Più risposte (1)
As you are comparing floatting point number, you should not use isequal. You should proceed like shown below:
N = 1000;
B = 10;
C = 2;
x = randn(N,B);
b = randn(B,C);
matMult = x * b;
dotProd = [x*b(:,1), x*b(:,2)];
tol = 10^-5 ; % can be changed
all(abs(matMult-dotProd)<tol,'all')
Categorie
Scopri di più su Linear Algebra in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!