Multiply a column by a number
73 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Elaheh
am 30 Mär. 2018
Beantwortet: Roger Stafford
am 30 Mär. 2018
How Could I simply multiply each element of this array by 4? A=array(:,6);
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Roger Stafford
am 30 Mär. 2018
Let Ar be the name of the array.
Ar(:,6) = 4*Ar(:,6);
What could be simpler? Since 4 is a scalar, it is automatically applied to each element of that column.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Multidimensional Arrays 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!