Multiply cell by cell

1 Ansicht (letzte 30 Tage)
Tesla
Tesla am 17 Sep. 2021
Kommentiert: Tesla am 17 Sep. 2021
I trying to muliply cell by cell.
Every cell has dimension 1001x1 and inside every cell I have 67x335 double.
So I want to multiply one by one. I tried with :
s=C_inside2.^2;
but I got this error:
Operator '.^' is not supported for operands of type 'cell'.

Akzeptierte Antwort

Jan
Jan am 17 Sep. 2021
Bearbeitet: Jan am 17 Sep. 2021
Use a loop:
for k = 1:numel(C_inside2)
C_inside2{k} = C_inside2{k} .^ 2;
end
This is faster than cellfun:
C_inside2 = cellfun(@(x) x.^2, C_inside2, 'uniformoutput', false);
  1 Kommentar
Tesla
Tesla am 17 Sep. 2021
Thank you, it works!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by