Multiplying each cell in an array by a column vector

2 Ansichten (letzte 30 Tage)
Stacy Genovese
Stacy Genovese am 2 Mai 2022
Bearbeitet: Rik am 2 Mai 2022
I have this code:
p_m = ones(m,N) .* 1/m;
for i = 1:N
temp{i} = cellfun(@(x,y) x.*y, p_m(:,i),energy_self{i}(:), 'UniformOutput',false);
end
self_energy = sum(sum([temp{:}]))
where energy_self is a 1xN cell array with each cell having a mxm matrix. I want to multiply cell 1 by the first column of p_m, cell 2 by the second column, etc. Then when that's done, add all the elements of the cell array into one number.
Any ideas?
Thanks in advance.

Akzeptierte Antwort

Rik
Rik am 2 Mai 2022
Bearbeitet: Rik am 2 Mai 2022
You should use a loop. That makes it a lot easier to write the indexing you need, and it will be faster.
Matrix operations are the fastest in Matlab, followed by loops, followed by loops obfuscated by cellfun or arrayfun. One exception: the legacy syntax of cellfun (e.g. cellfun('isempty',C)) can be faster than a loop.
  3 Kommentare
Stacy Genovese
Stacy Genovese am 2 Mai 2022
This is what i did:
for residue = 1:N
temp{residue} = p_m(:,residue) .* energy_self{residue};
end
self_energy = sum(sum([temp{:}]));
Thanks so much!
Rik
Rik am 2 Mai 2022
Bearbeitet: Rik am 2 Mai 2022
You're welcome. If I solved your issue, please consider marking it as accepted answer. That will help future users find a solution more quickly.
You could also consider doing the sumation inside the loop already:
self_energy=0;
for residue = 1:N
temp = p_m(:,residue) .* energy_self{residue};
self_energy = self_energy + sum(temp(:));
end

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by