Multiply Constant Array by Another Cell Array
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kareem Elgindy
am 9 Jan. 2023
Beantwortet: Stephen23
am 9 Jan. 2023
How to multiply each element of [2 3] by {(1:3)';(-1:2)'} so that the output is {[2,4,6]';[-3,0,3,6]'}?
0 Kommentare
Akzeptierte Antwort
Stephen23
am 9 Jan. 2023
A = {(1:3).';(-1:2).'};
B = [2,3];
C = cellfun(@times,A,num2cell(B(:)), 'uni',0)
C{:}
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!