help using bsxfun to multiplay different size matrixes

2 Ansichten (letzte 30 Tage)
barak messica
barak messica am 20 Mai 2024
Kommentiert: barak messica am 20 Mai 2024
I want to make the following:
create a matrix that has one more diamention the the matrix norm_mode (actuatty is to make a norm_mode a time function)
to accelrate it on matlab I tryied the use of bsxfun, but I get the error : "Non-singleton dimensions of the two input arrays must match each other."
Please help me fix it, I cant tell where the problem is.
tmp = zeros(newSize, newSize, length(others.t));
for idx_t = 1:length(t)
tmp(:,:,idx_t) = norm_mode(:,:) .* fields(idx_t,3) ;
end
tmp = bsxfun(@times, norm_mode, fields(:, ii));

Akzeptierte Antwort

Stephen23
Stephen23 am 20 Mai 2024
Bearbeitet: Stephen23 am 20 Mai 2024
tmp = bsxfun(@times, norm_mode, reshape(fields(:,3),1,1,[]))
  3 Kommentare

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by